gnhf 0.1.18 → 0.1.19
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/cli.mjs +6 -0
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -2898,6 +2898,12 @@ var Orchestrator = class extends EventEmitter {
|
|
|
2898
2898
|
}
|
|
2899
2899
|
}
|
|
2900
2900
|
}
|
|
2901
|
+
} catch (err) {
|
|
2902
|
+
appendDebugLog("orchestrator:loop-error", {
|
|
2903
|
+
iteration: this.state.currentIteration,
|
|
2904
|
+
error: serializeError(err)
|
|
2905
|
+
});
|
|
2906
|
+
throw err;
|
|
2901
2907
|
} finally {
|
|
2902
2908
|
this.activeIterationPromise = null;
|
|
2903
2909
|
if (this.stopPromise) await this.stopPromise;
|