From 4e1f402b67a273f5421cb9ddd8da5e87117bef18 Mon Sep 17 00:00:00 2001 From: John Spray Date: Tue, 18 Oct 2022 15:02:20 +0100 Subject: [PATCH] tests: remove ok_to_fail from EndToEndShadowIndexingTest* test_write_with_node_failures was disabled for a ticket that was fixed already. test_write_with_node_failures was disable unnecessarily, because the test body was already tweaked to work around #6111 by using smaller reader count, until we fix the code to limit concurrent readers. Related: https://github.com/redpanda-data/redpanda/issues/6111 --- tests/rptest/tests/e2e_shadow_indexing_test.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/rptest/tests/e2e_shadow_indexing_test.py b/tests/rptest/tests/e2e_shadow_indexing_test.py index e64a71536646..b0a8b7208edb 100644 --- a/tests/rptest/tests/e2e_shadow_indexing_test.py +++ b/tests/rptest/tests/e2e_shadow_indexing_test.py @@ -11,7 +11,6 @@ import os import random -from ducktape.mark import ok_to_fail from ducktape.tests.test import TestContext from ducktape.utils.util import wait_until @@ -228,7 +227,6 @@ def __init__(self, test_context): 'default_topic_replications': self.num_brokers, }) - @ok_to_fail # https://github.com/redpanda-data/redpanda/issues/4639 @cluster(num_nodes=5, log_allow_list=CHAOS_LOG_ALLOW_LIST) def test_write_with_node_failures(self): self.start_producer() @@ -307,7 +305,6 @@ def setUp(self): rpk.alter_topic_config(self.topic, 'retention.bytes', str(self.segment_size)) - @ok_to_fail # https://github.com/redpanda-data/redpanda/issues/6111 @cluster(num_nodes=8) def test_create_or_delete_topics_while_busy(self): self.logger.info(f"Environment: {os.environ}")