Skip to content

Commit

Permalink
MINOR: Disable transactional/idempotent system tests for Raft quorums (
Browse files Browse the repository at this point in the history
  • Loading branch information
rondagostino authored Mar 2, 2021
1 parent 4c5867a commit 29b4a3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tests/kafkatest/tests/core/replication_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ def min_cluster_size(self):
@matrix(failure_mode=["clean_shutdown", "hard_shutdown", "clean_bounce", "hard_bounce"],
broker_type=["leader"],
security_protocol=["PLAINTEXT"],
enable_idempotence=[True],
metadata_quorum=quorum.all_non_upgrade)
enable_idempotence=[True])
@matrix(failure_mode=["clean_shutdown", "hard_shutdown", "clean_bounce", "hard_bounce"],
broker_type=["leader"],
security_protocol=["PLAINTEXT", "SASL_SSL"],
Expand Down
3 changes: 2 additions & 1 deletion tests/kafkatest/tests/streams/streams_smoke_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ def __init__(self, test_context):
self.driver = StreamsSmokeTestDriverService(test_context, self.kafka)

@cluster(num_nodes=8)
@matrix(processing_guarantee=['at_least_once', 'exactly_once', 'exactly_once_beta'], crash=[True, False], metadata_quorum=quorum.all_non_upgrade)
@matrix(processing_guarantee=['at_least_once'], crash=[True, False], metadata_quorum=quorum.all_non_upgrade)
@matrix(processing_guarantee=['exactly_once', 'exactly_once_beta'], crash=[True, False])
def test_streams(self, processing_guarantee, crash, metadata_quorum=quorum.zk):
processor1 = StreamsSmokeTestJobRunnerService(self.test_context, self.kafka, processing_guarantee)
processor2 = StreamsSmokeTestJobRunnerService(self.test_context, self.kafka, processing_guarantee)
Expand Down

0 comments on commit 29b4a3d

Please sign in to comment.