Skip to content

Commit

Permalink
MINOR; Fix KRaft metadata version system tests (#14722)
Browse files Browse the repository at this point in the history
The latest metadata version is now 3.7. Fix the KRaft upgrade
test to upgrade to that version instead of 3.6.

Change the vagrant setup and gradle dependencies to use 3.3.2 instead of 3.3.1.

Reviewers: David Arthur <mumrah@gmail.com>
  • Loading branch information
jsancio committed Nov 9, 2023
1 parent eaa6b8a commit 35317d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ versions += [
kafka_30: "3.0.2",
kafka_31: "3.1.2",
kafka_32: "3.2.3",
kafka_33: "3.3.1",
kafka_33: "3.3.2",
kafka_34: "3.4.1",
kafka_35: "3.5.1",
kafka_36: "3.6.0",
Expand Down
4 changes: 2 additions & 2 deletions tests/kafkatest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def get_version(node=None):
DEV_BRANCH = KafkaVersion("dev")
DEV_VERSION = KafkaVersion("3.7.0-SNAPSHOT")

LATEST_METADATA_VERSION = "3.6"
LATEST_METADATA_VERSION = "3.7"

# 0.8.2.x versions
V_0_8_2_1 = KafkaVersion("0.8.2.1")
Expand Down Expand Up @@ -262,4 +262,4 @@ def get_version(node=None):
V_3_6_0 = KafkaVersion("3.6.0")
LATEST_3_6 = V_3_6_0

# only add released versions here
# only add released versions here
4 changes: 2 additions & 2 deletions vagrant/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ get_kafka 3.1.2 2.12
chmod a+rw /opt/kafka-3.1.2
get_kafka 3.2.3 2.12
chmod a+rw /opt/kafka-3.2.3
get_kafka 3.3.1 2.12
chmod a+rw /opt/kafka-3.3.1
get_kafka 3.3.2 2.12
chmod a+rw /opt/kafka-3.3.2
get_kafka 3.4.1 2.12
chmod a+rw /opt/kafka-3.4.1
get_kafka 3.5.1 2.12
Expand Down

0 comments on commit 35317d8

Please sign in to comment.