فهرست منبع

Merge pull request #1220 from mrjana/overlay

Do not plumb local peers as remote peers
Alessandro Boch 9 سال پیش
والد
کامیت
b85caa0cfd
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      libnetwork/drivers/overlay/joinleave.go

+ 6 - 0
libnetwork/drivers/overlay/joinleave.go

@@ -138,6 +138,12 @@ func (d *driver) EventNotify(etype driverapi.EventType, nid, tableName, key stri
 		return
 		return
 	}
 	}
 
 
+	// Ignore local peers. We already know about them and they
+	// should not be added to vxlan fdb.
+	if peer.TunnelEndpointIP == d.bindAddress {
+		return
+	}
+
 	addr, err := types.ParseCIDR(peer.EndpointIP)
 	addr, err := types.ParseCIDR(peer.EndpointIP)
 	if err != nil {
 	if err != nil {
 		log.Errorf("Invalid peer IP %s received in event notify", peer.EndpointIP)
 		log.Errorf("Invalid peer IP %s received in event notify", peer.EndpointIP)