We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e501113 commit 1b758bdCopy full SHA for 1b758bd
apps/webapp/app/runEngine/services/triggerTask.server.ts
@@ -237,7 +237,11 @@ export class RunEngineTriggerTaskService extends WithRunEngine {
237
})
238
: undefined;
239
240
- if (parentRun && isFinalRunStatus(parentRun.status)) {
+ if (
241
+ parentRun &&
242
+ isFinalRunStatus(parentRun.status) &&
243
+ body.options?.resumeParentOnCompletion
244
+ ) {
245
logger.debug("Parent run is in a terminal state", {
246
parentRun,
247
});
0 commit comments