Browse Source

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

Chris Bannister 9 years ago
parent
commit
05a3cd6fdd
1 changed files with 1 additions and 1 deletions
  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
 }