Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
poorbarcode committed Jan 1, 2025
1 parent 6ef7d25 commit 5a190f4
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,9 @@ public boolean hasSameKeySharedPolicy(KeySharedMeta ksm) {
}

public synchronized LinkedHashMap<Consumer, Position> getRecentlyJoinedConsumers() {
if (recentlyJoinedConsumers == null) {
return null;
}
return new LinkedHashMap<>(recentlyJoinedConsumers);
}

Expand Down

0 comments on commit 5a190f4

Please sign in to comment.