Skip to content

Commit 46d8891

Browse files
committed
return envVars from nested flows
1 parent 9f73ae1 commit 46d8891

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • src/components/molecules/flow/graph

src/components/molecules/flow/graph/Graph.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ class Graph {
222222
this.logger.add(LogLevel.INFO, 'End Flowtest');
223223
return {
224224
status: 'Success',
225-
logs: this.logs,
226225
envVars: this.envVariables,
227226
};
228227
}
@@ -238,11 +237,13 @@ class Graph {
238237
this.logger.add(LogLevel.INFO, 'End Flowtest');
239238
return {
240239
status: result.status,
240+
envVars: this.envVariables,
241241
};
242242
} else {
243243
this.logger.add(LogLevel.INFO, 'End Flowtest');
244244
return {
245245
status: 'Success',
246+
envVars: this.envVariables,
246247
};
247248
}
248249
}

0 commit comments

Comments
 (0)