chore: update replica version to 17d483c6#4514
Conversation
…2091b68a242ac69c72d-master
|
The The issue: after Suggested fix — move the fabricate-cycles call right after setting the high threshold: # with manual override it's ok
assert_command dfx canister update-settings hello_backend --freezing-threshold 100000000000 --confirm-very-long-freezing-threshold
- # to check if threshold is set correctly we have to un-freeze the canister by adding cycles. Fabricating 100T cycles onto it
- assert_command dfx ledger fabricate-cycles --canister hello_backend --t 100
+ # un-freeze the canister by adding cycles before checking status. Fabricating 100T cycles onto it.
+ # (With the updated replica the canister needs more cycles to sustain this threshold.)
+ assert_command dfx ledger fabricate-cycles --canister hello_backend --t 100
+
assert_command dfx canister status hello_backend
assert_match "Freezing threshold: 100_000_000_000"(The lines are the same, just ensuring fabricate-cycles happens before Actually looking again — they're already in that order. The issue might be that the + assert_command dfx ledger fabricate-cycles --canister hello_backend --t 100
assert_command dfx canister update-settings hello_backend --freezing-threshold 100000000000 --confirm-very-long-freezing-threshold
- # to check if threshold is set correctly we have to un-freeze the canister by adding cycles. Fabricating 100T cycles onto it
- assert_command dfx ledger fabricate-cycles --canister hello_backend --t 100
assert_command dfx canister status hello_backend |
The new replica requires more cycles to sustain an extreme freezing threshold (100B). Top up the canister before update-settings so it doesn't freeze and reject subsequent calls.
…2091b68a242ac69c72d-master
|
We're sunsetting this project (see #4524). If the blocking test isn't trivial to fix, feel free to just remove or comment it out. |
Yeah, trying my best! But I'd really would like to have an acceptable |
SHA 17d483c60a09b393ad82a2091b68a242ac69c72d (tag release-2026-03-26_04-51-base)
Suggested CHANGELOG.md changes
Previous replica version
``