Retry work recovery during cluster startup
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
lib/openagents/work.ex -
modified
test/openagents/work_job_test.exs
Diff
2 files changed, +116 -7
lib/openagents/work.ex modified +81 -7
@@ -12,6 +12,7 @@ defmodule OpenAgents.Work do
| 12 | 12 |
|
| 13 | 13 |
|
| 14 | 14 |
|
| 15 |
|
|
| 15 | 16 |
|
| 16 | 17 |
|
| 17 | 18 |
|
@@ -537,28 +538,101 @@ defmodule OpenAgents.Work do
| 537 | 538 |
|
| 538 | 539 |
|
| 539 | 540 |
|
| 540 |
|
|
| 541 |
|
|
| 542 |
|
|
| 541 |
|
|
| 542 |
|
|
| 543 |
|
|
| 544 |
|
|
| 543 | 545 |
|
| 544 |
|
|
| 546 |
|
|
| 547 |
|
|
| 548 |
|
|
| 545 | 549 |
|
| 546 | 550 |
|
| 547 | 551 |
|
| 548 | 552 |
|
| 549 | 553 |
|
| 550 |
|
|
| 554 |
|
|
| 551 | 555 |
|
| 552 | 556 |
|
| 553 | 557 |
|
| 554 |
|
|
| 555 |
|
|
| 558 |
|
|
| 559 |
|
|
| 556 | 560 |
|
| 557 | 561 |
|
| 558 | 562 |
|
| 559 | 563 |
|
| 560 | 564 |
|
| 561 | 565 |
|
| 566 |
|
|
| 567 |
|
|
| 568 |
|
|
| 569 |
|
|
| 570 |
|
|
| 571 |
|
|
| 572 |
|
|
| 573 |
|
|
| 574 |
|
|
| 575 |
|
|
| 576 |
|
|
| 577 |
|
|
| 578 |
|
|
| 579 |
|
|
| 580 |
|
|
| 581 |
|
|
| 582 |
|
|
| 583 |
|
|
| 584 |
|
|
| 585 |
|
|
| 586 |
|
|
| 587 |
|
|
| 588 |
|
|
| 589 |
|
|
| 590 |
|
|
| 591 |
|
|
| 592 |
|
|
| 593 |
|
|
| 594 |
|
|
| 595 |
|
|
| 596 |
|
|
| 597 |
|
|
| 598 |
|
|
| 599 |
|
|
| 600 |
|
|
| 601 |
|
|
| 602 |
|
|
| 603 |
|
|
| 604 |
|
|
| 605 |
|
|
| 606 |
|
|
| 607 |
|
|
| 608 |
|
|
| 609 |
|
|
| 610 |
|
|
| 611 |
|
|
| 612 |
|
|
| 613 |
|
|
| 614 |
|
|
| 615 |
|
|
| 616 |
|
|
| 617 |
|
|
| 618 |
|
|
| 619 |
|
|
| 620 |
|
|
| 621 |
|
|
| 622 |
|
|
| 623 |
|
|
| 624 |
|
|
| 625 |
|
|
| 626 |
|
|
| 627 |
|
|
| 628 |
|
|
| 629 |
|
|
| 630 |
|
|
| 631 |
|
|
| 632 |
|
|
| 633 |
|
|
| 634 |
|
|
| 635 |
|
|
| 562 | 636 |
|
| 563 | 637 |
|
| 564 | 638 |
|
test/openagents/work_job_test.exs modified +35
@@ -153,6 +153,41 @@ defmodule OpenAgents.WorkJobTest do
| 153 | 153 |
|
| 154 | 154 |
|
| 155 | 155 |
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 159 |
|
|
| 160 |
|
|
| 161 |
|
|
| 162 |
|
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 |
|
|
| 176 |
|
|
| 177 |
|
|
| 178 |
|
|
| 179 |
|
|
| 180 |
|
|
| 181 |
|
|
| 182 |
|
|
| 183 |
|
|
| 184 |
|
|
| 185 |
|
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 190 |
|
|
| 156 | 191 |
|
| 157 | 192 |
|
| 158 | 193 |
|