Skip to content

Commit

Permalink
MINOR: Fix fail e2e transactions_upgrade_test.py::TransactionsUpgrade…
Browse files Browse the repository at this point in the history
…Test.test_transactions_upgrade (#19004)

The main root cause is
3dba312,
this PR remove the metadata version which is older than 3.3, thus this
test will fail when it use metadata version 3.2, 3.1

Reviewers: David Jacot <[email protected]>
  • Loading branch information
m1a2st authored Feb 22, 2025
1 parent 4074314 commit c6335c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/kafkatest/tests/core/transactions_upgrade_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from kafkatest.services.transactional_message_copier import TransactionalMessageCopier
from kafkatest.utils import is_int
from kafkatest.utils.transactions_utils import create_and_start_copiers
from kafkatest.version import LATEST_3_1, LATEST_3_2, LATEST_3_3, LATEST_3_4, LATEST_3_5, \
from kafkatest.version import LATEST_3_3, LATEST_3_4, LATEST_3_5, \
LATEST_3_6, LATEST_3_7, LATEST_3_8, LATEST_3_9, DEV_BRANCH, KafkaVersion, LATEST_STABLE_METADATA_VERSION, LATEST_STABLE_TRANSACTION_VERSION

from ducktape.tests.test import Test
Expand Down Expand Up @@ -208,7 +208,7 @@ def setup_topics(self):

@cluster(num_nodes=8)
@matrix(
from_kafka_version=[str(LATEST_3_9), str(LATEST_3_8), str(LATEST_3_7), str(LATEST_3_6), str(LATEST_3_5), str(LATEST_3_4), str(LATEST_3_3), str(LATEST_3_2), str(LATEST_3_1)],
from_kafka_version=[str(LATEST_3_9), str(LATEST_3_8), str(LATEST_3_7), str(LATEST_3_6), str(LATEST_3_5), str(LATEST_3_4), str(LATEST_3_3)],
metadata_quorum=[isolated_kraft],
use_new_coordinator=[False],
group_protocol=[None]
Expand Down

0 comments on commit c6335c2

Please sign in to comment.