Skip to content

Commit

Permalink
KAFKA-18619: New consumer topic metadata events should set requireMet…
Browse files Browse the repository at this point in the history
…adata flag
  • Loading branch information
frankvicky committed Jan 22, 2025
1 parent 341e535 commit 2446388
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,9 @@ public abstract class AbstractTopicMetadataEvent extends CompletableApplicationE
protected AbstractTopicMetadataEvent(final Type type, final long deadlineMs) {
super(type, deadlineMs);
}

@Override
public boolean requireSubscriptionMetadata() {
return true;
}
}

0 comments on commit 2446388

Please sign in to comment.