Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use smaller timeouts for circuit relay connections #2577

Open
wants to merge 1 commit into
base: rc-2024.12.1-hotfix3
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ant-networking/src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,7 @@ impl NetworkBuilder {
circuit_src_rate_limiters: vec![], // No extra rate limiting for now
// We should at least be able to relay packets with chunks etc.
max_circuit_bytes: MAX_PACKET_SIZE as u64,
max_circuit_duration: CONNECTION_KEEP_ALIVE_TIMEOUT,
..Default::default()
};
libp2p::relay::Behaviour::new(peer_id, relay_server_cfg)
Expand Down
Loading