remove unnecessary go statement

This commit is contained in:
iamqizhao 2015-10-02 16:04:55 -07:00
parent 4648452efa
commit 9a7e50e3d9
1 changed files with 1 additions and 1 deletions

View File

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