diff --git a/airbyte-workers/src/main/java/io/airbyte/workers/temporal/sync/SyncWorkflowImpl.java b/airbyte-workers/src/main/java/io/airbyte/workers/temporal/sync/SyncWorkflowImpl.java index 93b350457eda..5aa793994867 100644 --- a/airbyte-workers/src/main/java/io/airbyte/workers/temporal/sync/SyncWorkflowImpl.java +++ b/airbyte-workers/src/main/java/io/airbyte/workers/temporal/sync/SyncWorkflowImpl.java @@ -74,8 +74,10 @@ public StandardSyncOutput run(final JobRunConfig jobRunConfig, shouldRun = true; } if (!shouldRun) { - LOGGER.info("Skipping normalization because there are no records to normalize."); - continue; + LOGGER.info("No records to normalize detected"); + // Normalization skip has been disabled: issue #5417 + // LOGGER.info("Skipping normalization because there are no records to normalize."); + // continue; } } diff --git a/airbyte-workers/src/test/java/io/airbyte/workers/temporal/sync/SyncWorkflowTest.java b/airbyte-workers/src/test/java/io/airbyte/workers/temporal/sync/SyncWorkflowTest.java index ada9d6e567d2..1e29735bc316 100644 --- a/airbyte-workers/src/test/java/io/airbyte/workers/temporal/sync/SyncWorkflowTest.java +++ b/airbyte-workers/src/test/java/io/airbyte/workers/temporal/sync/SyncWorkflowTest.java @@ -50,6 +50,7 @@ import org.apache.commons.lang3.tuple.ImmutablePair; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; @SuppressWarnings({"PMD.UnusedPrivateField", "PMD.UnusedPrivateMethod"}) @@ -312,6 +313,7 @@ void testCancelDuringNormalization() { } @Test + @Disabled("This behavior has been disabled temporarily (OC Issue #741)") void testSkipNormalization() throws IOException { final SyncStats syncStats = new SyncStats().withRecordsCommitted(0L); final StandardSyncSummary standardSyncSummary = new StandardSyncSummary().withTotalStats(syncStats);