Don't show confusing message for blacklist expires (#13983) (#13985)

(cherry picked from commit 2f374df494)

Co-authored-by: Ryo Onodera <ryoqun@gmail.com>
This commit is contained in:
mergify[bot]
2020-12-07 14:41:41 +00:00
committed by GitHub
parent b410c57f66
commit eb0f51e487

View File

@ -212,7 +212,9 @@ fn get_rpc_node(
);
if rpc_peers_blacklisted == rpc_peers_total {
retry_reason = if blacklist_timeout.elapsed().as_secs() > 60 {
retry_reason = if !blacklisted_rpc_nodes.is_empty()
&& blacklist_timeout.elapsed().as_secs() > 60
{
// If all nodes are blacklisted and no additional nodes are discovered after 60 seconds,
// remove the blacklist and try them all again
blacklisted_rpc_nodes.clear();