create-claude-workspace 2.3.9 → 2.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/scheduler/index.mjs +2 -0
- package/package.json +1 -1
package/dist/scheduler/index.mjs
CHANGED
|
@@ -248,6 +248,8 @@ export async function runScheduler(opts) {
|
|
|
248
248
|
if (!opts.resume) {
|
|
249
249
|
state.pipelines = {};
|
|
250
250
|
}
|
|
251
|
+
// Always re-run recovery on fresh scheduler start
|
|
252
|
+
state._recoveryDone = false;
|
|
251
253
|
logger.info(`Loaded state: ${state.completedTasks.length} completed, ${state.skippedTasks.length} skipped, iteration ${state.iteration}`);
|
|
252
254
|
}
|
|
253
255
|
else {
|