Skip to content

Commit

Permalink
Fix wrong TX command
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanpelikan committed Jun 14, 2024
1 parent a006214 commit cbdc54c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ private Object checkForTransaction(
}
}
if (actions.get().bpmnErrorCommand != null) {
final var runnable = actions.get().handlerFailedCommand.getKey();
final var description = actions.get().handlerFailedCommand.getValue();
final var runnable = actions.get().bpmnErrorCommand.getKey();
final var description = actions.get().bpmnErrorCommand.getValue();
publisher.publishEvent(
new Camunda8TransactionProcessor.Camunda8CommandAfterTx(
methodSignature,
Expand Down

0 comments on commit cbdc54c

Please sign in to comment.