Commit 838da84
authored
fix: deflake //rs/tests/nested/nns_recovery:nr_local (#9303)
## Root Cause
The test `//rs/tests/nested/nns_recovery:nr_local` flaked with:
```
Could not create message canister.: "Timeout while creating message canister"
```
`store_message` creates the canister with a single attempt that can time
out under load.
## Fix
Replace `store_message` with `store_message_with_retries`, which retries
canister creation for up to 300s with 10s intervals, making it resilient
to transient timeouts.
---
This PR was created following the steps in
`.claude/skills/fix-flaky-tests/SKILL.md`.1 parent 89821ed commit 838da84
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
215 | 215 | | |
216 | 216 | | |
217 | 217 | | |
218 | | - | |
| 218 | + | |
219 | 219 | | |
220 | 220 | | |
221 | 221 | | |
| |||
0 commit comments