don't use a goroutine when initializing clients

This commit is contained in:
Jeremy Latt 2014-02-16 22:26:33 -08:00
parent cd4503be31
commit dc5e258f88
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ func (s *Server) listen(config ListenerConfig) {
if DEBUG_SERVER { if DEBUG_SERVER {
log.Print("Server.Accept: ", conn.RemoteAddr()) log.Print("Server.Accept: ", conn.RemoteAddr())
} }
go NewClient(s, conn) NewClient(s, conn)
} }
} }