Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/go/sarama/produce_test/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
var (
brokers = flag.String("brokers", "127.0.0.1:9092", "Th Redpanda brokers to connect to, as a comma separated list")
count = flag.Int64("count", 100, "Optional count to run")
version = flag.String("version", "2.1.0", "Kafka version to use, e.g. 2.1.0")
version = flag.String("version", "4.2.0", "Kafka version to use, e.g. 2.1.0")
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion tests/rptest/tests/compatibility/sarama_produce_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, test_context):
)

@cluster(num_nodes=3, log_allow_list=TX_ERROR_LOGS)
@matrix(version=["2.1.0", "2.6.0"])
@matrix(version=["2.1.0", "2.6.0", "4.2.0"])
def test_produce(self, version):
verifier_bin = "/opt/redpanda-tests/go/sarama/produce_test/produce_test"

Expand Down
8 changes: 4 additions & 4 deletions tests/rptest/tests/compatibility/sarama_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self, test_context):
self._timeout = 30 if self.scale.local else 1200

@cluster(num_nodes=4)
@matrix(version=["2.1.0", "2.6.0"])
@matrix(version=["2.1.0", "2.6.0", "4.2.0"])
def test_sarama_interceptors(self, version):
sarama_example = SaramaExamples.SaramaInterceptors(
self.redpanda, version, self.topic
Expand All @@ -56,7 +56,7 @@ def test_sarama_interceptors(self, version):
wait_until(example.condition_met, timeout_sec=self._timeout, backoff_sec=1)

@cluster(num_nodes=4)
@matrix(version=["2.1.0", "2.6.0"])
@matrix(version=["2.1.0", "2.6.0", "4.2.0"])
def test_sarama_http_server(self, version):
sarama_example = SaramaExamples.SaramaHttpServer(self.redpanda, version)
example = ExampleRunner(self._ctx, sarama_example, timeout_sec=self._timeout)
Expand Down Expand Up @@ -91,7 +91,7 @@ def try_curl():
)

@cluster(num_nodes=5)
@matrix(version=["2.1.0", "2.6.0"])
@matrix(version=["2.1.0", "2.6.0", "4.2.0"])
def test_sarama_consumergroup(self, version):
count = 10 if self.scale.local else 5000

Expand Down Expand Up @@ -144,7 +144,7 @@ def __init__(self, test_context):
super(SaramaScramTest, self).__init__(test_context, security=security)

@cluster(num_nodes=3)
@matrix(version=["2.1.0", "2.6.0"])
@matrix(version=["2.1.0", "2.6.0", "4.2.0"])
def test_sarama_sasl_scram(self, version):
# Get the SASL SCRAM command and a ducktape node
cmd = SaramaExamples.sarama_sasl_scram(self.redpanda, version, self.topic)
Expand Down