Hyperledger Sawtooth Validator 节点怎么可能在 Sawtooth 网络中有 'number of peers greater than the maximum connectivity'?

How is it possible for a Hyperledger Sawtooth Validator node to have 'number of peers greater than the maximum connectivity' in the Sawtooth Network?

以下语句来自documentation.

The network component continues to perform a peer search if its number of peers is less than the minimum connectivity. The network component rejects peering attempts if its number of peers is equal to or greater than the maximum connectivity.

问题:

如文档所述,

number of peers is equal to or greater than the maximum connectivity,

如果一个节点允许有一个'maximum number of peers',比如N,'number of peers'怎么可能大于N?

注意:

您可能想参考我的另一个 ,它与发生在 'attempting peering' 之前的 'maximum connection between nodes' 有关。这两个问题的主要区别在于 'maximum connections' 和 'maximum (bi-directional) peers'。

不,它不能大于 N(理想情况下)。 查看 this code,如果当前对等点数小于允许的最大对等点数,则连接被注册为对等点。文档是根据拒绝条件来说明的。即("less than" vs "greater than or equal to")

文档正确