Skip processing Advert which carries no events
This commit is contained in:
parent
ef86c9625b
commit
ccb6778f7f
@ -585,6 +585,11 @@ func (n *network) processCtrlChan(client transport.Client, listener tunnel.Liste
|
||||
}
|
||||
events = append(events, e)
|
||||
}
|
||||
// if no events are eligible for processing continue
|
||||
if len(events) == 0 {
|
||||
log.Debugf("Network no events to be processed by router: %s", n.options.Id)
|
||||
continue
|
||||
}
|
||||
// create an advert and process it
|
||||
advert := &router.Advert{
|
||||
Id: pbRtrAdvert.Id,
|
||||
|
Loading…
Reference in New Issue
Block a user