@highstate/backend 0.9.24 → 0.9.25
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/index.js +1 -14
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/orchestrator/operation.ts +1 -17
package/dist/index.js
CHANGED
|
@@ -7229,20 +7229,7 @@ ${errors.join("\n")}`
|
|
|
7229
7229
|
}
|
|
7230
7230
|
}
|
|
7231
7231
|
handleUnitMessage(update, state) {
|
|
7232
|
-
|
|
7233
|
-
this.promiseTracker.track(
|
|
7234
|
-
this.operationService.appendLog(
|
|
7235
|
-
this.project.id,
|
|
7236
|
-
this.operation.id,
|
|
7237
|
-
state.id,
|
|
7238
|
-
update.message
|
|
7239
|
-
)
|
|
7240
|
-
);
|
|
7241
|
-
if (!state.parentInstanceId) {
|
|
7242
|
-
break;
|
|
7243
|
-
}
|
|
7244
|
-
state = this.context.getState(state.parentInstanceId);
|
|
7245
|
-
}
|
|
7232
|
+
this.operationService.appendLog(this.project.id, this.operation.id, state.id, update.message);
|
|
7246
7233
|
}
|
|
7247
7234
|
async handleUnitProgress(update) {
|
|
7248
7235
|
await this.workset.updateState(update.unitId, {
|