Commit 02b31c9d authored by Daniel Hiltgen's avatar Daniel Hiltgen
Browse files

Don't return error on signal exit

parent 5bece945
...@@ -1086,7 +1086,7 @@ func Serve(ln net.Listener) error { ...@@ -1086,7 +1086,7 @@ func Serve(ln net.Listener) error {
return err return err
} }
<-ctx.Done() <-ctx.Done()
return err return nil
} }
func waitForStream(c *gin.Context, ch chan interface{}) { func waitForStream(c *gin.Context, ch chan interface{}) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment