The executable status is set to failed and the message is captured within so no need to re-throw any exceptions
@@ -137,13 +137,6 @@ class ExecutableActions extends DisposableComponent {
executable.execute();
}
-
- executeNext() {
- if (this.activeExecutable() && this.activeExecutable().nextExecutable) {
- this.activeExecutable(this.activeExecutable().nextExecutable);
- }
- this.execute();
componentUtils.registerComponent(NAME, ExecutableActions, TEMPLATE);
@@ -227,7 +227,6 @@ export default class Executable {
this.logs.fetchLogs();
} catch (err) {
this.setStatus(EXECUTION_STATUS.failed);
- throw err;