mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-24 07:11:38 +00:00
protocols/identify: Change default cache_size of Config to 100 (#2995)
`Config` struct's member `cache_size` now defaults to `100`.
This commit is contained in:
@ -131,7 +131,7 @@ impl Config {
|
||||
initial_delay: Duration::from_millis(500),
|
||||
interval: Duration::from_secs(5 * 60),
|
||||
push_listen_addr_updates: false,
|
||||
cache_size: 0,
|
||||
cache_size: 100,
|
||||
}
|
||||
}
|
||||
|
||||
@ -748,9 +748,7 @@ mod tests {
|
||||
let mut swarm2 = {
|
||||
let (pubkey, transport) = transport();
|
||||
let protocol = Behaviour::new(
|
||||
Config::new("a".to_string(), pubkey.clone())
|
||||
.with_cache_size(100)
|
||||
.with_agent_version("b".to_string()),
|
||||
Config::new("a".to_string(), pubkey.clone()).with_agent_version("b".to_string()),
|
||||
);
|
||||
|
||||
Swarm::new(transport, protocol, pubkey.to_peer_id())
|
||||
|
Reference in New Issue
Block a user