Skip to content

Commit

Permalink
DBZ-4321 Add debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Dec 12, 2023
1 parent 8c17c8c commit c104829
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,10 @@ protected void waitForStreamingStarted() throws InterruptedException {
private void setRecordsWaitTimeAfterNulls() {
System.setProperty(RECORDS_WAITTIME_AFTER_NULLS, System.getProperty(RECORDS_WAITTIME_AFTER_NULLS, "120"));
}

protected SourceRecords consumeRecordsByTopicReselectWhenNullStreaming() throws InterruptedException {
SourceRecords records = super.consumeRecordsByTopicReselectWhenNullStreaming();
records.allRecordsInOrder().forEach(System.out::println);
return records;
}
}

0 comments on commit c104829

Please sign in to comment.