Browse Source

the control doesnt need to wait for binary when marking a host up

Chris Bannister 9 năm trước cách đây
mục cha
commit
05a3cd6fdd
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      control.go

+ 1 - 1
control.go

@@ -148,7 +148,7 @@ func (c *controlConn) setupConn(conn *Conn) error {
 		return err
 	}
 
-	go c.session.handleNodeUp(net.ParseIP(host), port, true)
+	c.session.handleNodeUp(net.ParseIP(host), port, false)
 
 	return nil
 }