Fix Orchestrator task persistence and file lock handling #10957
+71
−23
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.
Fixes the issue where Orchestrator mode tasks would stop prematurely and disappear from the task list after creating multiple subtasks in rapid succession.
Root Cause
Lock contention during rapid file writes when Orchestrator creates multiple subtasks. Each delegation involves concurrent writes to:
When lock acquisition failed or metadata persistence failed silently, parent tasks would appear to "disappear" from the UI.
Changes
Increased lock resilience in safeWriteJson:
Added retry logic for critical delegation metadata:
Testing
View task on Roo Code Cloud
Important
Enhances task persistence and lock handling in Orchestrator mode by adding retry logic and increasing lock resilience in
ClineProvider.tsandsafeWriteJson.ts.ClineProvider.ts.safeWriteJson.tswith longer timeouts and more retries.safeWriteJson.ts: Lock staleness timeout increased from 31s to 60s, retries from 5 to 10, and backoff timeout range from 100-1000ms to 200-2000ms.ClineProvider.ts: 3 retry attempts with exponential backoff for parent task status persistence.safeWriteJsontests pass (16/16).This description was created by
for 8a5eccb. You can customize this summary. It will automatically update as commits are pushed.