Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3375 from v1r3n/jq_execute_method
Browse files Browse the repository at this point in the history
Call execute in case JQ execution failed to start
  • Loading branch information
v1r3n committed Mar 13, 2023
2 parents 972092b + 34a6cff commit 1e515a6
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,13 @@ private LoadingCache<String, JsonQuery> createQueryCache() {
.build(loader);
}

@Override
public boolean execute(
WorkflowModel workflow, TaskModel task, WorkflowExecutor workflowExecutor) {
this.start(workflow, task, workflowExecutor);
return true;
}

private String extractFirstValidMessage(final Exception e) {
Throwable currentStack = e;
final List<String> messages = new ArrayList<>();
Expand Down

0 comments on commit 1e515a6

Please sign in to comment.