diff options
Diffstat (limited to 'cmd/alps')
-rw-r--r-- | cmd/alps/main.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cmd/alps/main.go b/cmd/alps/main.go index e519332..fc1fdd8 100644 --- a/cmd/alps/main.go +++ b/cmd/alps/main.go @@ -78,8 +78,6 @@ func main() { go e.Start(addr) - s.Queue.Start(context.Background()) - sigs := make(chan os.Signal, 1) signal.Notify(sigs, syscall.SIGUSR1, syscall.SIGINT) @@ -98,9 +96,5 @@ func main() { e.Shutdown(ctx) cancel() - e.Logger.Print("Waiting for work queues to finish...") - s.Queue.Shutdown() - e.Logger.Print("Shut down.") - s.Close() } |