Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/stella-cli/src/daemon/boot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
//! the checkpoint on every terminal path, abort included, so a policy stop
//! retracts its resume point on the way out. A row written by a build that
//! predates #1653 — where a policy stop really did store `Error` — is
//! therefore filtered by `SkipReason::NoResumePoint` anyway, without this
//! therefore filtered by [`crate::daemon::boot::SkipReason::NoResumePoint`]
//! anyway, without this
//! module having to trust its status.
//! - **The attempt bound still applies.** An `Error` that resumes into
//! another `Error` is counted like any other continuation and retired
Expand Down
8 changes: 7 additions & 1 deletion crates/stella-pipeline/src/pipeline/scope_stage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@ impl Pipeline<'_> {
research,
&repo_structure,
revision.as_deref(),
&mut Spend { budget, total },
// Reborrowed per iteration: the loop replans after a
// rejected scope card, and a moved `Spend` could not be
// handed to the next attempt.
&mut Spend {
budget: &mut *budget,
total: &mut *total,
},
)
.await
{
Expand Down
Loading