Skip to content

Commit

Permalink
Merge pull request #3360 from dusk-network/neotamandua/channel_mitiga…
Browse files Browse the repository at this point in the history
…tion

rusk: increase archive channel capacity
  • Loading branch information
Neotamandua authored Jan 20, 2025
2 parents 527e759 + 1e3eb3e commit 89a2db3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions rusk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Change `check_rusk_version` to ignore pre-release by default
- Increase archive channel capacity from 1000 to 10000 [#3359]

## [1.0.0] - 2025-01-05

Expand Down Expand Up @@ -286,6 +287,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add linking between Rusk and Protobuff structs
- Add build system that generates keys for circuits and caches them.

[#3359]: https://github.com/dusk-network/rusk/issues/3359
[#3206]: https://github.com/dusk-network/rusk/issues/3206
[#2597]: https://github.com/dusk-network/rusk/issues/2597
[#2536]: https://github.com/dusk-network/rusk/issues/2536
Expand Down
2 changes: 1 addition & 1 deletion rusk/src/lib/builder/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ impl RuskNodeBuilder {
let (node_sender, node_receiver) = mpsc::channel(1000);

#[cfg(feature = "archive")]
let (archive_sender, archive_receiver) = mpsc::channel(1000);
let (archive_sender, archive_receiver) = mpsc::channel(10000);

let gas_per_deploy_byte = self
.gas_per_deploy_byte
Expand Down

0 comments on commit 89a2db3

Please sign in to comment.