Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions javasource/processqueue/queuehandler/ObjectQueueExecutor.java
Original file line number Diff line number Diff line change
Expand Up @@ -223,15 +223,15 @@ public synchronized void run()
this._state = State.finishedFollowup;
}
} catch (Exception e) {
_logNode.info("Error during commit from queue", e);
setErrormessageAndCommit(this.context, this.action, "An unknown error occured. Please contact your system administrator.", e, LogExecutionStatus.FailedExecuted, ActionStatus.Cancelled);
_logNode.error("Error during commit from queue", e);
setErrormessageAndCommit(Core.createSystemContext(), this.action, "An unknown error occured. Please contact your system administrator.", e, LogExecutionStatus.FailedExecuted, ActionStatus.Cancelled);
}
}
} catch (Exception e) {
this._state = State.failed;
// Microflow is being rollbacked
_logNode.error("Error during committing errormessage from queue", e);
setErrormessageAndCommit(this.context, this.action, "An unknown error occured. Please contact your system administrator.", e, LogExecutionStatus.FailedExecuted, ActionStatus.Cancelled);
setErrormessageAndCommit(Core.createSystemContext(), this.action, "An unknown error occured. Please contact your system administrator.", e, LogExecutionStatus.FailedExecuted, ActionStatus.Cancelled);
}
finally {
this._state = State.threadFinished;
Expand Down Expand Up @@ -309,4 +309,4 @@ public long getActionNr() {
public String getMicroflowName() {
return this.microflowName;
}
}
}