Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@ CompletableFuture<CompletedCheckpoint> triggerCheckpoint(
@Nullable String externalSavepointLocation,
boolean isPeriodic) {

// aaaand an even better comment
CheckpointTriggerRequest request =
new CheckpointTriggerRequest(props, externalSavepointLocation, isPeriodic);
chooseRequestToExecute(request).ifPresent(this::startTriggeringCheckpoint);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ private List<String> retrieveChangelogResult(
}

private void verifySinkResult(String path) throws IOException {
// new comment
final List<String> actualResults = new ArrayList<>();
TestBaseUtils.readAllResultLines(actualResults, path);
final List<String> expectedResults = new ArrayList<>();
Expand Down