diff --git a/webserver.go b/webserver.go index 7c26b85..ac9be94 100644 --- a/webserver.go +++ b/webserver.go @@ -473,6 +473,7 @@ func serveGroupRecordings(w http.ResponseWriter, r *http.Request, f *os.File, gr } func shutdown() { - ctx, _ := context.WithTimeout(context.Background(), 2*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second) + defer cancel() server.Shutdown(ctx) }