jolshan commented on a change in pull request #10492: URL: https://github.com/apache/kafka/pull/10492#discussion_r608861828
########## File path: clients/src/main/java/org/apache/kafka/common/Uuid.java ########## @@ -27,6 +27,10 @@ */ public class Uuid implements Comparable<Uuid> { + /** + * A UUID for the metadata topic in KRaft mode. Will never be returned by the randomUuid method. + */ + public static final Uuid METADATA_TOPIC_ID = new Uuid(0L, 1L); private static final java.util.UUID SENTINEL_ID_INTERNAL = new java.util.UUID(0L, 1L); Review comment: referring to the private constant? I can change that too. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org