Conn limit bug

This commit is contained in:
刘河 2019-02-25 13:53:20 +08:00
parent f7898e019e
commit 204c53ddd3

View File

@ -81,8 +81,8 @@ func (s *Client) AddConn() {
} }
func (s *Client) GetConn() bool { func (s *Client) GetConn() bool {
s.CutConn()
if s.MaxConn == 0 || s.NowConn < s.MaxConn { if s.MaxConn == 0 || s.NowConn < s.MaxConn {
s.CutConn()
return true return true
} }
return false return false