Add missing return in shutdown

Co-Authored-By: Jason <armooo@armooo.net>
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2023-07-07 13:29:53 +02:00 committed by Kristoffer Dalby
parent 4b65cf48d0
commit 53a9e28faf

View File

@ -775,6 +775,8 @@ func (h *Headscale) Serve() error {
// And we're done:
cancel()
return
}
}
}