Skip to content

Commit

Permalink
fix compile errors
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Klem <yannic.klem@bosch.io>
  • Loading branch information
Yannic92 committed Aug 22, 2022
1 parent 0966597 commit 6e8561b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,9 @@ public Source<String, NotUsed> getJournalPidsWithTag(final String tag,
.grouped(batchSize)
.flatMapConcat(pids -> {
if (considerOnlyLatest) {
return filterPidsThatDoesntContainTagInNewestEntry(journal, pids, tag)
return filterPidsThatDoesntContainTagInNewestEntry(journal, pids, tag);
} else {
return pids;
return Source.from(pids);
}
}));
}
Expand Down

0 comments on commit 6e8561b

Please sign in to comment.