Report repository import storage failures
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
-
added
lib/openagents/repositories/git_failure.ex -
modified
lib/openagents/repositories/importer.ex -
added
test/openagents/repositories/git_failure_test.exs
Diff
3 files changed, +78 -5
lib/openagents/repositories/git_failure.ex added +27
@@ -0,0 +1,27 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
lib/openagents/repositories/importer.ex modified +23 -5
@@ -5,7 +5,7 @@ defmodule OpenAgents.Repositories.Importer do
| 5 | 5 |
|
| 6 | 6 |
|
| 7 | 7 |
|
| 8 |
|
|
| 8 |
|
|
| 9 | 9 |
|
| 10 | 10 |
|
| 11 | 11 |
|
@@ -220,8 +220,13 @@ defmodule OpenAgents.Repositories.Importer do
| 220 | 220 |
|
| 221 | 221 |
|
| 222 | 222 |
|
| 223 |
|
|
| 224 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 225 | 230 |
|
| 226 | 231 |
|
| 227 | 232 |
|
@@ -319,8 +324,10 @@ defmodule OpenAgents.Repositories.Importer do
| 319 | 324 |
|
| 320 | 325 |
|
| 321 | 326 |
|
| 322 |
|
|
| 323 |
|
|
| 327 |
|
|
| 328 |
|
|
| 329 |
|
|
| 330 |
|
|
| 324 | 331 |
|
| 325 | 332 |
|
| 326 | 333 |
|
@@ -532,6 +539,8 @@ defmodule OpenAgents.Repositories.Importer do
| 532 | 539 |
|
| 533 | 540 |
|
| 534 | 541 |
|
| 542 |
|
|
| 543 |
|
|
| 535 | 544 |
|
| 536 | 545 |
|
| 537 | 546 |
|
@@ -583,6 +592,15 @@ defmodule OpenAgents.Repositories.Importer do
| 583 | 592 |
|
| 584 | 593 |
|
| 585 | 594 |
|
| 595 |
|
|
| 596 |
|
|
| 597 |
|
|
| 598 |
|
|
| 599 |
|
|
| 600 |
|
|
| 601 |
|
|
| 602 |
|
|
| 603 |
|
|
| 586 | 604 |
|
| 587 | 605 |
|
| 588 | 606 |
|
test/openagents/repositories/git_failure_test.exs added +28
@@ -0,0 +1,28 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|