diff --git a/airbyte-notification/src/main/java/io/airbyte/notification/SlackNotificationClient.java b/airbyte-notification/src/main/java/io/airbyte/notification/SlackNotificationClient.java index c1c082bdc15..55a275c780f 100644 --- a/airbyte-notification/src/main/java/io/airbyte/notification/SlackNotificationClient.java +++ b/airbyte-notification/src/main/java/io/airbyte/notification/SlackNotificationClient.java @@ -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; }