Some fixes to the previous edit

Former-commit-id: da5219084b60d820ced713feff837e3964fa1fb0
This commit is contained in:
Gerasimos (Makis) Maropoulos 2017-10-22 00:41:04 +03:00 committed by GitHub
parent 9061d3d695
commit 1cd9b70791

View File

@ -316,8 +316,10 @@ func (s *Server) GetTotalConnections() int {
// GetConnections returns all connections
func (s *Server) GetConnections() []Connection {
s.mu.RLock()
conns:= make([]Connection, len(s.connections))
copy(conns, s.connections)
conns := make([]Connection, len(s.connections), len(s.connections))
for i, c := range s.connections {
conns[i] = c.value
}
s.mu.RUnlock()
return conns
}