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 e67ad29 commit d33a1acCopy full SHA for d33a1ac
packages/cli/src/InternalHooks.ts
@@ -284,6 +284,8 @@ export class InternalHooks implements IInternalHooksClass {
284
properties.user_id = userId;
285
}
286
287
+ properties.success = !!runData?.finished;
288
+
289
let executionStatus: ExecutionStatus;
290
if (runData?.status === 'crashed') {
291
executionStatus = 'crashed';
@@ -295,7 +297,6 @@ export class InternalHooks implements IInternalHooksClass {
295
297
296
298
if (runData !== undefined) {
299
properties.execution_mode = runData.mode;
- properties.success = !!runData.finished;
300
properties.is_manual = runData.mode === 'manual';
301
302
let nodeGraphResult: INodesGraphResult | null = null;
0 commit comments