Skip to content

Commit

Permalink
bugfix: fix incorrect function call
Browse files Browse the repository at this point in the history
  • Loading branch information
lmoesle committed Jan 15, 2024
1 parent ed480c6 commit 4fadcb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void executeTask(@Valid ExecuteTaskCommand command) throws IntegrationNam
command.getCustomDestination() :
this.getDefaultDestination(command.getIntegrationName());

emitEventOutPort.emitEvent(destination, command.getType(), command.getInstanceId(), command.getIntegrationName(), command.getData());
emitEventOutPort.emitEvent(destination, command.getType(), command.getIntegrationName(), command.getInstanceId(), command.getData());
}

private String getDefaultDestination(String integrationName) {
Expand Down

0 comments on commit 4fadcb0

Please sign in to comment.