From: Yuval Lifshitz Date: Sun, 26 Apr 2026 07:15:03 +0000 (+0000) Subject: test/rgw/kafka: make batch size tests manual X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=280a3b0c6ce4e736d9ffbb39e07b5fdf4ef3b267;p=ceph.git test/rgw/kafka: make batch size tests manual currently failing in teuthology Signed-off-by: Yuval Lifshitz --- diff --git a/src/test/rgw/bucket_notification/test_bn.py b/src/test/rgw/bucket_notification/test_bn.py index 974bf68f6037..84ed5a36258f 100644 --- a/src/test/rgw/bucket_notification/test_bn.py +++ b/src/test/rgw/bucket_notification/test_bn.py @@ -6066,13 +6066,13 @@ def kafka_batch_size(match_batch_size): receiver.close(task) -@pytest.mark.kafka_test +@pytest.mark.manual_test def test_kafka_batch_size(): """ test that setting rgw_kafka_max_batch_size limits the batch size sent to kafka """ kafka_batch_size(match_batch_size=True) -@pytest.mark.kafka_test +@pytest.mark.manual_test def test_kafka_batch_size_mismatch(): """ test that without rgw_kafka_max_batch_size, batched messages exceed the broker limit """ kafka_batch_size(match_batch_size=False)