Jonathan Hart
Committed by Pavlin Radoslavov

Fix for setting up peer paths where BGP speakers don't peer with all peers.

Returning prevents any further paths being set up, even though this isn't
an error condition.

Change-Id: I13eb4b3021c78f437dcfd2fa715bb4568e6046d1
......@@ -136,7 +136,7 @@ public class PeerConnectivityManager {
if (bgpdAddress == null) {
log.debug("There is no interface IP address for bgpPeer: {}"
+ " on interface {}", bgpPeer, bgpPeer.connectPoint());
return;
continue;
}
IpAddress bgpdPeerAddress = bgpPeer.ipAddress();
......@@ -270,7 +270,7 @@ public class PeerConnectivityManager {
log.debug("There is no IP address for bgpPeer: {} on "
+ "interface port: {}", bgpPeer,
bgpPeer.connectPoint());
return;
continue;
}
IpAddress bgpdPeerAddress = bgpPeer.ipAddress();
......