Skip to content

Commit

Permalink
bugfixed
Browse files Browse the repository at this point in the history
  • Loading branch information
admpub committed Jul 8, 2018
1 parent 1ef8d7c commit 1f65580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/mux/mux_bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (s *MuxBridge) StopService() {
(*(*s.sc).Listener).Close()
}
for _, g := range s.clientControlConns.Items() {
for _, session := range g.(utils.ConcurrentMap).Items() {
for _, session := range g.(*utils.ConcurrentMap).Items() {
(session.(*smux.Session)).Close()
}
}
Expand Down

0 comments on commit 1f65580

Please sign in to comment.