chia7712 commented on code in PR #20972:
URL: https://github.com/apache/kafka/pull/20972#discussion_r2557176235
##########
tests/kafkatest/version.py:
##########
@@ -248,4 +248,5 @@ def get_version(node=None):
# 4.2.x version
V_4_2_0 = KafkaVersion("4.2.0")
-LATEST_4_2 = V_4_2_0
+V_4_2_1 = KafkaVersion("4.2.1")
+LATEST_4_2 = V_4_2_1
Review Comment:
This code was added by #20471 to prevent the use of new configurations in
order kafka tools, we could remove the entire 4.2 section by reversing the
version check condition. `self >= V_4_2_0` -> `self <= LATEST_4_1`
--
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]