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

Reviewed-on: #26
このコミットが含まれているのは:
Dan Ballard 2020-10-29 15:51:34 -07:00
コミット b97196a4ce
1個のファイルの変更3行の追加1行の削除

ファイルの表示

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