checkpoint

⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-05-24 18:52:45 -04:00
parent 66e2bf63bd
commit 69cd575351
4 changed files with 212 additions and 17 deletions

201
run.json

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,17 @@
diff --git a/lib/crates/fabro-store/src/run_state.rs b/lib/crates/fabro-store/src/run_state.rs
index 35c18d5f6..85052f8ce 100644
--- a/lib/crates/fabro-store/src/run_state.rs
+++ b/lib/crates/fabro-store/src/run_state.rs
@@ -72,10 +72,8 @@ impl RunProjectionReducer for RunProjection {
EventBody::RunSubmitted(props) => {
self.spec.definition_blob = props.definition_blob;
}
- EventBody::RunStartRequested(props) => {
- if props.resume {
- self.try_apply_status(RunStatus::Submitted, ts)?;
- }
+ EventBody::RunStartRequested(props) if props.resume => {
+ self.try_apply_status(RunStatus::Submitted, ts)?;
}
EventBody::RunPending(props) => {
self.try_apply_status(

View file

@ -0,0 +1,6 @@
{
"outcome": "succeeded",
"notes": "Stage completed: fix_lints",
"failure_reason": null,
"timestamp": "2026-05-24T22:52:23.262607Z"
}

View file

@ -0,0 +1,5 @@
{
"script": "cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
"command": "exec 2>&1\ncargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
"language": "shell"
}