Merge pull request 'Check if Listener exists before trying to close it' (#26) from bugfix into master
the build was successful Ayrıntılar

Reviewed-on: #26
Bu işleme şunda yer alıyor:
Dan Ballard 2020-10-29 15:51:34 -07:00
işleme b97196a4ce
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme

Dosyayı Görüntüle

@ -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()