Skip to content

Commit

Permalink
Reverse emitted/committed in job completion slack notification text (…
Browse files Browse the repository at this point in the history
…#11920)
  • Loading branch information
malikdiarra committed Apr 16, 2024
1 parent 65dbe10 commit e594299
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ static Notification buildJobCompletedNotification(final SyncSummary summary, fin
Section summarySection = notification.addSection();
summarySection.setText(String.format("""
*Sync Summary:*
%d record(s) loaded / %d record(s) extracted
%s loaded / %s extracted
%d record(s) extracted / %d record(s) loaded
%s extracted / %s loaded
""",
summary.getRecordsCommitted(), summary.getRecordsEmitted(),
summary.getBytesCommittedFormatted(), summary.getBytesEmittedFormatted()));
summary.getRecordsEmitted(), summary.getRecordsCommitted(),
summary.getBytesEmittedFormatted(), summary.getBytesCommittedFormatted()));

return notification;
}
Expand Down

0 comments on commit e594299

Please sign in to comment.