From 9c5a8ab7f2098d1ffc567af27f385c55f471cb9c Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 15 Oct 2021 00:07:12 +0000 Subject: [PATCH] Change "too many resources" to "insufficient resources" in eth2_libp2p (#2713) ## Issue Addressed NA ## Proposed Changes Fixes what I assume is a typo in a log message. See the diff for details. ## Additional Info NA --- beacon_node/eth2_libp2p/src/peer_manager/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/eth2_libp2p/src/peer_manager/mod.rs b/beacon_node/eth2_libp2p/src/peer_manager/mod.rs index 9ed82c0867..7e7a298320 100644 --- a/beacon_node/eth2_libp2p/src/peer_manager/mod.rs +++ b/beacon_node/eth2_libp2p/src/peer_manager/mod.rs @@ -625,7 +625,7 @@ impl PeerManager { RPCError::StreamTimeout => match direction { ConnectionDirection::Incoming => { // we timed out - warn!(self.log, "Timed out to a peer's request. Likely too many resources, reduce peer count"); + warn!(self.log, "Timed out to a peer's request. Likely insufficient resources, reduce peer count"); return; } ConnectionDirection::Outgoing => match protocol {