Merge pull request #383 from iamqizhao/master

remove unnecessary go statement
This commit is contained in:
Qi Zhao
2015-10-02 16:12:33 -07:00

View File

@ -290,7 +290,7 @@ func NewConn(cc *ClientConn) (*Conn, error) {
c.Close()
return
}
go c.transportMonitor()
c.transportMonitor()
}()
}
return c, nil