Commit d250d8b
authored
fix(auto): the spawn retry window was shorter than the thing it covers (#235)
#214 gave the assessor a bounded spawn retry and #226 extended it to the
planner. Both shipped at 3 attempts, 300ms apart -- a 600ms window -- and two
more lanes died on the same failure AFTER that shipped:
assessor run: claude run: spawn failed: exec: "claude": executable file not found in $PATH
planner run: claude run: spawn failed: exec: "claude": executable file not found in $PATH
Four occurrences in one day, two of them post-fix. 600ms is less than a
package manager takes to relink a binary, so the retry was correct in shape
and useless in size. 5 attempts, 2s apart.
A machine that genuinely lacks the CLI still fails -- eight seconds later,
saying what it said before. Only a spawn that never happened is retried; a
refused reply, a non-zero exit, a timeout and a cancelled context all still
stop on the first answer.
Signed-off-by: jitokim <pigberger70@gmail.com>1 parent f8eaa4f commit d250d8b
2 files changed
Lines changed: 45 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
15 | 38 | | |
16 | 39 | | |
17 | 40 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
195 | 195 | | |
196 | 196 | | |
197 | 197 | | |
198 | | - | |
199 | | - | |
200 | | - | |
201 | | - | |
202 | | - | |
203 | | - | |
204 | | - | |
205 | | - | |
206 | | - | |
207 | | - | |
208 | | - | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
209 | 220 | | |
210 | 221 | | |
211 | 222 | | |
| |||
0 commit comments