Skip to content

Commit

Permalink
Increase max_pending_connections_* (#628)
Browse files Browse the repository at this point in the history
* Increase max pending connections

* Update CHANGELOG
  • Loading branch information
sandreae authored Jun 16, 2024
1 parent 34d7e43 commit 27923b5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Introduce `PeerAddress` struct to help resolve `String` to internal address types [#621](https://github.com/p2panda/aquadoggo/pull/621)

### Changed

- Increase `max_pending_connections_in` and `max_pending_connections_out` [#628](https://github.com/p2panda/aquadoggo/pull/628)

## [0.7.3]

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions aquadoggo/src/network/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ impl Default for NetworkConfiguration {
dial_concurrency_factor: 8,
max_connections_in: 16,
max_connections_out: 16,
max_connections_pending_in: 8,
max_connections_pending_out: 8,
max_connections_pending_in: 16,
max_connections_pending_out: 16,
max_connections_per_peer: 8,
}
}
Expand Down

0 comments on commit 27923b5

Please sign in to comment.