Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Increase validator max tcp connections #1367

Merged
merged 1 commit into from
Jan 21, 2022
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion config/docker-val.config.src
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
{libp2p,
[
{random_peer_pred, fun miner_util:true_predicate/1},
{nat_map, #{ {"${NAT_INTERNAL_IP}", "${NAT_INTERNAL_PORT}"} => {"${NAT_EXTERNAL_IP}", "${NAT_EXTERNAL_PORT}"}}}
{nat_map, #{ {"${NAT_INTERNAL_IP}", "${NAT_INTERNAL_PORT}"} => {"${NAT_EXTERNAL_IP}", "${NAT_EXTERNAL_PORT}"}}},
{max_tcp_connections, 2048}
]},
{relcast,
[
Expand Down
3 changes: 2 additions & 1 deletion config/val.config.src
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
{libp2p,
[
{random_peer_pred, fun miner_util:true_predicate/1},
{nat_map, #{ {"${NAT_INTERNAL_IP}", "${NAT_INTERNAL_PORT}"} => {"${NAT_EXTERNAL_IP}", "${NAT_EXTERNAL_PORT}"}}}
{nat_map, #{ {"${NAT_INTERNAL_IP}", "${NAT_INTERNAL_PORT}"} => {"${NAT_EXTERNAL_IP}", "${NAT_EXTERNAL_PORT}"}}},
{max_tcp_connections, 2048}
]
},
{relcast,
Expand Down