1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-12 19:55:59 +01:00

Move server shutdown into group.go.

This commit is contained in:
Juliusz Chroboczek 2021-09-11 15:42:14 +02:00
parent 184bd30077
commit c860fb96a3
2 changed files with 7 additions and 6 deletions

View file

@ -701,8 +701,12 @@ func kickall(g *Group, message string) {
}) })
} }
func (g *Group) Shutdown(message string) { func Shutdown(message string) {
kickall(g, message) Range(func(g *Group) bool {
g.SetLocked(true, message)
kickall(g, message)
return true
})
} }
type warner interface { type warner interface {

View file

@ -70,10 +70,7 @@ func Serve(address string, dataDir string) error {
} }
} }
s.RegisterOnShutdown(func() { s.RegisterOnShutdown(func() {
group.Range(func(g *group.Group) bool { group.Shutdown("server is shutting down")
go g.Shutdown("server is shutting down")
return true
})
}) })
server.Store(s) server.Store(s)