Merge pull request 'Check if Listener exists before trying to close it' (#26) from bugfix into master
the build was successful Szczegóły

Reviewed-on: #26
This commit is contained in:
Dan Ballard 2020-10-29 15:51:34 -07:00
commit b97196a4ce
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -172,7 +172,9 @@ func (s *BaseOnionService) Listen(app tapir.Application) error {
func (s *BaseOnionService) Shutdown() {
s.lock.Lock()
defer s.lock.Unlock()
s.ls.Close()
if s.ls != nil {
s.ls.Close()
}
s.connections.Range(func(key, value interface{}) bool {
connection := value.(tapir.Connection)
connection.Close()