Skip to content

Commit 2504caf

Browse files
authored
Fix description of 'unconditional peer' behavior (#272)
1 parent 4644c00 commit 2504caf

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ type P2PConfig struct { //nolint: maligned
692692
// with the default being "priority".
693693
QueueType string `mapstructure:"queue-type"`
694694

695-
// List of node IDs, to which a connection will be (re)established ignoring any existing limits
695+
// List of node IDs, to which a connection will be (re)established, dropping an existing peer if any existing limit has been reached
696696
UnconditionalPeerIDs string `mapstructure:"unconditional-peer-ids"`
697697
}
698698

config/toml.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ send-rate = {{ .P2P.SendRate }}
348348
# TODO: Remove once MConnConnection is removed.
349349
recv-rate = {{ .P2P.RecvRate }}
350350
351-
# List of node IDs, to which a connection will be (re)established ignoring any existing limits
351+
# List of node IDs, to which a connection will be (re)established, dropping an existing peer if any existing limit has been reached
352352
unconditional-peer-ids = "{{ .P2P.UnconditionalPeerIDs }}"
353353
354354

internal/p2p/peermanager.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ type PeerManagerOptions struct {
9797
// necessary to make room for these.
9898
PersistentPeers []types.NodeID
9999

100-
// Peers to which a connection will be (re)established ignoring any existing limits
100+
// Peers to which a connection will be (re)established, dropping an existing peer if any existing limit has been reached
101101
UnconditionalPeers []types.NodeID
102102

103103
// Only include those peers for block sync
@@ -157,7 +157,7 @@ type PeerManagerOptions struct {
157157
// by optimize().
158158
persistentPeers map[types.NodeID]bool
159159

160-
// List of node IDs, to which a connection will be (re)established ignoring any existing limits
160+
// List of node IDs, to which a connection will be (re)established, dropping an existing peer if any existing limit has been reached
161161
unconditionalPeers map[types.NodeID]struct{}
162162

163163
// blocksyncPeers provides fast blocksyncPeers lookups.

scripts/confix/testdata/v33-config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ max_num_inbound_peers = 40
190190
# Maximum number of outbound peers to connect to, excluding persistent peers
191191
max_num_outbound_peers = 10
192192

193-
# List of node IDs, to which a connection will be (re)established ignoring any existing limits
193+
# List of node IDs, to which a connection will be (re)established, dropping an existing peer if any existing limit has been reached
194194
unconditional_peer_ids = ""
195195

196196
# Maximum pause when redialing a persistent peer (if zero, exponential backoff is used)

scripts/confix/testdata/v34-config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ max_num_inbound_peers = 40
230230
# Maximum number of outbound peers to connect to, excluding persistent peers
231231
max_num_outbound_peers = 10
232232

233-
# List of node IDs, to which a connection will be (re)established ignoring any existing limits
233+
# List of node IDs, to which a connection will be (re)established, dropping an existing peer if any existing limit has been reached
234234
unconditional_peer_ids = ""
235235

236236
# Maximum pause when redialing a persistent peer (if zero, exponential backoff is used)

scripts/confix/testdata/v35-config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ max-connections = 64
284284
# Rate limits the number of incoming connection attempts per IP address.
285285
max-incoming-connection-attempts = 100
286286

287-
# List of node IDs, to which a connection will be (re)established ignoring any existing limits
287+
# List of node IDs, to which a connection will be (re)established, dropping an existing peer if any existing limit has been reached
288288
# TODO: Remove once p2p refactor is complete.
289289
# ref: https://github.com/tendermint/tendermint/issues/5670
290290
unconditional-peer-ids = ""

0 commit comments

Comments
 (0)