jolshan commented on a change in pull request #9769:
URL: https://github.com/apache/kafka/pull/9769#discussion_r546292513
##########
File path: clients/src/main/java/org/apache/kafka/common/protocol/Errors.java
##########
@@ -343,7 +344,8 @@
INVALID_UPDATE_VERSION(95, "The given update version was invalid.",
InvalidUpdateVersionException::new),
FEATURE_UPDATE_FAILED(96, "Unable to update finalized features due to an
unexpected server error.", FeatureUpdateFailedException::new),
PRINCIPAL_DESERIALIZATION_FAILURE(97, "Request principal deserialization
failed during forwarding. " +
- "This indicates an internal error on the broker cluster security
setup.", PrincipalDeserializationException::new);
+ "This indicates an internal error on the broker cluster security
setup.", PrincipalDeserializationException::new),
+ UNKNOWN_TOPIC_ID(98, "The topic ID dose not exist",
UnknownTopicIdException::new);
Review comment:
nit: typo "dose" -> "does" I also had a slightly different message in my
PR that implements this error. Either one is fine.
https://github.com/apache/kafka/pull/9684/files
----------------------------------------------------------------
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:
[email protected]