Fix tests after Go update

This commit is contained in:
eikendev 2022-04-20 22:38:10 +02:00
parent 0b8d22d293
commit ed78c18c24
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694
3 changed files with 7 additions and 6 deletions

View file

@ -17,7 +17,7 @@ import (
var version string
func setupCleanup(db *database.Database, dp *dispatcher.Dispatcher) {
c := make(chan os.Signal)
c := make(chan os.Signal, 2)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {