mjsax commented on code in PR #21110:
URL: https://github.com/apache/kafka/pull/21110#discussion_r2604619255
##########
clients/src/main/java/org/apache/kafka/common/requests/StreamsGroupHeartbeatResponse.java:
##########
@@ -81,7 +81,19 @@ public enum Status {
MISSING_SOURCE_TOPICS((byte) 1, "One or more source topics are missing
or a source topic regex resolves to zero topics."),
INCORRECTLY_PARTITIONED_TOPICS((byte) 2, "One or more topics expected
to be copartitioned are not copartitioned."),
MISSING_INTERNAL_TOPICS((byte) 3, "One or more internal topics are
missing."),
- SHUTDOWN_APPLICATION((byte) 4, "A client requested the shutdown of the
whole application.");
+ SHUTDOWN_APPLICATION((byte) 4, "A client requested the shutdown of the
whole application."),
+ ASSIGNMENT_DELAYED((byte) 5, "The assignment was delayed by the
coordinator."),
+ UNKNOWN_STATUS((byte) 255, "Status unrecognized.");
Review Comment:
Cannot find `UNKNOWN_STATUS` on the KIP either.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]