1
Fork 0

Call context cancel function after shutdown.

Keeps go vet from complaining.
This commit is contained in:
Juliusz Chroboczek 2020-09-18 10:36:05 +02:00
parent 2347417f83
commit 5a4db62873
1 changed files with 2 additions and 1 deletions

View File

@ -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)
}