runtime: removed trap goroutine and let the context cancelation do the thing

This commit is contained in:
A.Unger
2021-12-06 12:11:48 +01:00
parent 771b870753
commit e3e3d1ee57
15 changed files with 4 additions and 75 deletions
-5
View File
@@ -14,7 +14,6 @@ import (
"github.com/owncloud/ocis/glauth/pkg/tracing"
pkgcrypto "github.com/owncloud/ocis/ocis-pkg/crypto"
"github.com/owncloud/ocis/ocis-pkg/service/grpc"
"github.com/owncloud/ocis/ocis-pkg/sync"
"github.com/urfave/cli/v2"
)
@@ -178,10 +177,6 @@ func Server(cfg *config.Config) *cli.Command {
})
}
if !cfg.Supervised {
sync.Trap(&gr, cancel)
}
return gr.Run()
},
}