Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

`dfx canister delete --no-withdrawal <canister>` can be used to delete a canister without attempting to withdraw cycles.

=== fix: set RUST_MIN_STACK to 8MB for ic-starter (and therefore replica)

This matches the value used in production and is meant to exceed the configured 5 MB wasmtime stack.

== Motoko

Updated Motoko from 0.6.11 to 0.6.14.
Expand Down
3 changes: 3 additions & 0 deletions src/dfx/src/actors/replica.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,9 @@ fn replica_start_thread(
// For our production network, we actually set them to 600ms.
"600",
]);

cmd.env("RUST_MIN_STACK", "8192000");
Comment thread
This conversation was marked as resolved.

cmd.stdout(std::process::Stdio::inherit());
cmd.stderr(std::process::Stdio::inherit());

Expand Down