ops: pin greenhouse max_concurrent: 1 + document multi-dispatch bug#109
Open
tehreet wants to merge 1 commit into
Open
ops: pin greenhouse max_concurrent: 1 + document multi-dispatch bug#109tehreet wants to merge 1 commit into
tehreet wants to merge 1 commit into
Conversation
Today's dogfood run dispatched 5 issues concurrently. The greenhouse dispatcher writes .overstory/session-branch.txt and checks out the per-run merge branch on EVERY dispatch — with concurrent dispatches the LAST checkout wins, and every subsequent ov merge lands the wrong builder's work onto the wrong run's merge branch. Net result: greenhouse/promptionary-d414 (issue #93's branch) ended up with merges from #91 + #89's builders. Issue #92's builder branch was contaminated similarly. Salvaged 4 clean focused commits from the overstory/builder-* branches into PRs #105 (#90), #106 (#89), #107 (#91), #108 (#92). Mitigation: - Drop max_concurrent from 5 → 1 so dispatches serialize. The proper fix in greenhouse is to use git worktree per merge branch instead of swapping HEAD on the canonical repo. - Document the bug + recovery in docs/agent-factory-status.md. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Today's dogfood run found a serious orchestration bug in greenhouse — concurrent dispatches share
.overstory/session-branch.txtand the canonical repo HEAD, so the LAST dispatched run's merge branch wins and every subsequentov mergelands work onto the wrong branch. Documents the bug, the recovery (PRs #105-#108 salvaged), and pins the config tomax_concurrent: 1to prevent recurrence.🤖 Generated with Claude Code