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 dc0b653 commit 04e3f05Copy full SHA for 04e3f05
apps/webapp/app/runEngine/concerns/runChainStates.server.ts
@@ -40,6 +40,13 @@ export class DefaultRunChainStateManager implements RunChainStateManager {
40
41
const parentRunChainState = parsedParentRunChainState.data;
42
43
+ if (
44
+ typeof request.body.options?.resumeParentOnCompletion === "boolean" &&
45
+ !request.body.options.resumeParentOnCompletion
46
+ ) {
47
+ return parentRunChainState;
48
+ }
49
+
50
// Now we need to check if the parent run will hold concurrency, or if it will release it
51
// if it will hold concurrency, we need to account for the parent run's concurrency
52
// Then, along with the new run's concurrency,
0 commit comments