Skip to content

Commit

Permalink
Logging possible root cause, when executionId is null
Browse files Browse the repository at this point in the history
  • Loading branch information
galenatjpl authored Dec 1, 2020
1 parent 67e3662 commit 86691a0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ private void runTask() {
fieldName = null;

executionId = task.getExecutionId();
if (executionId == null) {
log.error("executionId for task: " + task + " was null! Possible instance of https://jira.camunda.com/browse/CAM-10750. " +
"This hopefully will be fixed in Camunda 7.14");
}

if (task.getVariables().containsKey(activityId + "_cwsError")) {

Expand Down

0 comments on commit 86691a0

Please sign in to comment.