Match silent_until behavior of NeighborState and Cache

v0.7.x
Thales Fragoso 2020-08-13 17:09:10 -03:00 committed by whitequark
parent 561708c34f
commit 88d01234a8
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ impl Meta {
self.handle, neighbor);
self.neighbor_state = NeighborState::Active;
true
} else if timestamp > silent_until {
} else if timestamp >= silent_until {
net_trace!("{}: neighbor {} silence timer expired, rediscovering", self.handle, neighbor);
true
} else {