Fix query expiry computation (#1346)
This commit is contained in:
parent
559b7c8faa
commit
275148a152
@ -75,7 +75,7 @@ impl QueryType {
|
|||||||
Self::FindPeers => false,
|
Self::FindPeers => false,
|
||||||
Self::Subnet { min_ttl, .. } => {
|
Self::Subnet { min_ttl, .. } => {
|
||||||
if let Some(ttl) = min_ttl {
|
if let Some(ttl) = min_ttl {
|
||||||
ttl > &Instant::now()
|
ttl < &Instant::now()
|
||||||
} else {
|
} else {
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
@ -471,7 +471,7 @@ impl<TSpec: EthSpec> Discovery<TSpec> {
|
|||||||
.count();
|
.count();
|
||||||
|
|
||||||
if peers_on_subnet > TARGET_SUBNET_PEERS {
|
if peers_on_subnet > TARGET_SUBNET_PEERS {
|
||||||
trace!(self.log, "Discovery ignored";
|
debug!(self.log, "Discovery ignored";
|
||||||
"reason" => "Already connected to desired peers",
|
"reason" => "Already connected to desired peers",
|
||||||
"connected_peers_on_subnet" => peers_on_subnet,
|
"connected_peers_on_subnet" => peers_on_subnet,
|
||||||
"target_subnet_peers" => TARGET_SUBNET_PEERS,
|
"target_subnet_peers" => TARGET_SUBNET_PEERS,
|
||||||
|
Loading…
Reference in New Issue
Block a user