Skip to content

Commit

Permalink
chore: emit dest exit value when non-0. (#13773)
Browse files Browse the repository at this point in the history
  • Loading branch information
tryangul committed Aug 30, 2024
1 parent d7bd50c commit a33b711
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ private void readFromDestination() {
replicationInput.getConnectionId().toString(),
"destination",
replicationInput.getDestinationLauncherConfig().getDockerImage(),
String.valueOf(source.getExitValue()));
String.valueOf(destination.getExitValue()));
throw new DestinationException("Destination process exited with non-zero exit code " + destination.getExitValue());
} else {
replicationWorkerHelper.endOfDestination();
Expand Down

0 comments on commit a33b711

Please sign in to comment.