From 654a632a56896d635a835e1e1d7506ae284c95b0 Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@elixxir.ioo> Date: Thu, 17 Sep 2020 16:51:30 -0700 Subject: [PATCH] fix to stopable --- context/stoppable/single.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context/stoppable/single.go b/context/stoppable/single.go index c5eadaefa..acd8da007 100644 --- a/context/stoppable/single.go +++ b/context/stoppable/single.go @@ -32,7 +32,7 @@ func (s *Single) IsRunning() bool { } // Quit returns the read only channel it will send the stop signal on. -func (s *Single) Quit() <-chan struct{} { +func (s *Single) Quit() chan<- struct{} { return s.quit } -- GitLab