Fix map iteration bug

This commit is contained in:
Sarah Jamie Lewis 2019-07-23 11:41:49 -07:00
parent 27afc8d1ce
commit 368e2ba61b
1 changed files with 1 additions and 1 deletions

View File

@ -141,6 +141,6 @@ func (s *BaseOnionService) Shutdown() {
s.connections.Range(func(key, value interface{}) bool { s.connections.Range(func(key, value interface{}) bool {
connection := value.(*tapir.Connection) connection := value.(*tapir.Connection)
connection.Close() connection.Close()
return false return true
}) })
} }