DBZ-6035 Await transactions also in IncrementalSnapshotWithRecompileIT

Override no-op waitForCdcTransactionPropagation() also in
IncrementalSnapshotWithRecompileIT which also fails very often.
This commit is contained in:
Vojtech Juranek 2023-01-31 00:11:25 +01:00 committed by Jiri Pechanec
parent 775c96971a
commit c52ffe2fcd

View File

@ -121,4 +121,9 @@ protected Builder mutableConfig(boolean signalTableOnly, boolean storeOnlyCaptur
.with(SqlServerConnectorConfig.TABLE_INCLUDE_LIST, tableIncludeList)
.with(SchemaHistory.STORE_ONLY_CAPTURED_TABLES_DDL, storeOnlyCapturedDdl);
}
@Override
protected void waitForCdcTransactionPropagation(int expectedTransactions) throws Exception {
TestHelper.waitForCdcTransactionPropagation(connection, TestHelper.TEST_DATABASE_1, expectedTransactions);
}
}