remove unnecessary go statement

This commit is contained in:
iamqizhao
2015-10-02 16:04:55 -07:00
parent 4648452efa
commit 9a7e50e3d9

View File

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