@@ -192,7 +192,7 @@ func NewCalicoClient(confdConfig *config.Config) (*client, error) {
192
192
c .localBGPPeerWatcher .Start ()
193
193
194
194
// Create a conditional that we use to wake up all of the watcher threads when there
195
- // may some actionable updates.
195
+ // may be some actionable updates.
196
196
c .watcherCond = sync .NewCond (& c .cacheLock )
197
197
198
198
// Increment the waitForSync wait group. This blocks the GetValues call until the
@@ -292,9 +292,11 @@ func NewCalicoClient(confdConfig *config.Config) (*client, error) {
292
292
return c , nil
293
293
}
294
294
295
+ // Strings for keying in-sync messages by their upstream source.
295
296
var (
296
297
SourceSyncer string = "SourceSyncer"
297
298
SourceRouteGenerator string = "SourceRouteGenerator"
299
+ SourceLocalBGPPeerWatcher string = "LocalBGPPeerWatcher"
298
300
)
299
301
300
302
// client implements the StoreClient interface for confd, and also implements the
@@ -425,7 +427,7 @@ func (c *client) ExcludeServiceAdvertisement() bool {
425
427
return false
426
428
}
427
429
428
- // OnInSync handles multiplexing in-sync messages from multiple data sources
430
+ // OnSyncChange handles multiplexing in-sync messages from multiple data sources
429
431
// into a single representation of readiness.
430
432
func (c * client ) OnSyncChange (source string , ready bool ) {
431
433
c .cacheLock .Lock ()
@@ -439,13 +441,13 @@ func (c *client) OnSyncChange(source string, ready bool) {
439
441
log .Infof ("Source %v readiness changed, ready=%v" , source , ready )
440
442
441
443
// Check if we are fully in sync, before applying this change.
442
- oldFullSync := c .sourceReady [SourceSyncer ] && c .sourceReady [SourceRouteGenerator ]
444
+ oldFullSync := c .sourceReady [SourceSyncer ] && c .sourceReady [SourceRouteGenerator ] && c . sourceReady [ SourceLocalBGPPeerWatcher ]
443
445
444
446
// Apply the change.
445
447
c .sourceReady [source ] = ready
446
448
447
449
// Check if we are fully in sync now.
448
- newFullSync := c .sourceReady [SourceSyncer ] && c .sourceReady [SourceRouteGenerator ]
450
+ newFullSync := c .sourceReady [SourceSyncer ] && c .sourceReady [SourceRouteGenerator ] && c . sourceReady [ SourceLocalBGPPeerWatcher ]
449
451
450
452
if newFullSync == oldFullSync {
451
453
log .Debugf ("No change to full sync status (%v)" , newFullSync )
0 commit comments