forked from LBRYCommunity/lbry-sdk
DHT bugfix: failures tracking should be bound to 2048 LRU cache size
This commit is contained in:
parent
7df02303b2
commit
f586de2bbe
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class PeerManager:
|
|||
self._loop = loop
|
||||
self._rpc_failures: typing.Dict[
|
||||
typing.Tuple[str, int], typing.Tuple[typing.Optional[float], typing.Optional[float]]
|
||||
] = {}
|
||||
] = LRUCache(2048)
|
||||
self._last_replied: typing.Dict[typing.Tuple[str, int], float] = LRUCache(2048)
|
||||
self._last_sent: typing.Dict[typing.Tuple[str, int], float] = LRUCache(2048)
|
||||
self._last_requested: typing.Dict[typing.Tuple[str, int], float] = LRUCache(2048)
|
||||
|
|
Loading…
Reference in a new issue