cmccabe commented on code in PR #12195:
URL: https://github.com/apache/kafka/pull/12195#discussion_r887347720


##########
metadata/src/main/java/org/apache/kafka/controller/QuorumController.java:
##########
@@ -1271,6 +1271,9 @@ private void replay(ApiMessage message, 
Optional<OffsetAndEpoch> snapshotId, lon
                 case PRODUCER_IDS_RECORD:
                     producerIdControlManager.replay((ProducerIdsRecord) 
message);
                     break;
+                case BROKER_REGISTRATION_CHANGE_RECORD:
+                    clusterControl.replay((BrokerRegistrationChangeRecord) 
message);
+                    break;

Review Comment:
   MetadataDelta#replay already handles this record. The bug is that it wasn't 
handled on the controller side.



-- 
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]

Reply via email to