From a5c530cbf4343fdff164ee6b7e04e7be1b77b5f2 Mon Sep 17 00:00:00 2001 From: John Spray Date: Wed, 26 Apr 2023 13:59:45 +0100 Subject: [PATCH] tests: ok_to_fail empty segment recovery case Related: https://github.com/redpanda-data/redpanda/issues/10219 --- tests/rptest/tests/topic_recovery_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/rptest/tests/topic_recovery_test.py b/tests/rptest/tests/topic_recovery_test.py index b2fa235a7f9a..caa358a12860 100644 --- a/tests/rptest/tests/topic_recovery_test.py +++ b/tests/rptest/tests/topic_recovery_test.py @@ -17,6 +17,7 @@ from typing import Callable, NamedTuple, Optional, Sequence import requests +from ducktape.mark import ok_to_fail from ducktape.cluster.cluster import ClusterNode from ducktape.mark import matrix from ducktape.tests.test import TestContext @@ -1341,6 +1342,7 @@ def test_no_data(self, cloud_storage_type): self.rpk_producer_maker) self.do_run(test_case) + @ok_to_fail # https://github.com/redpanda-data/redpanda/issues/10219 @cluster(num_nodes=3, log_allow_list=MISSING_DATA_ERRORS + TRANSIENT_ERRORS) @matrix(cloud_storage_type=get_cloud_storage_type())