Skip to content

Commit

Permalink
tests: remove ok_to_fail from EndToEndShadowIndexingTest*
Browse files Browse the repository at this point in the history
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 redpanda-data#6111 by using
smaller reader count, until we fix the code to limit concurrent
readers.

Related: redpanda-data#6111
  • Loading branch information
jcsp committed Oct 18, 2022
1 parent 5c07236 commit 4e1f402
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/rptest/tests/e2e_shadow_indexing_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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()
Expand Down Expand Up @@ -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}")
Expand Down

0 comments on commit 4e1f402

Please sign in to comment.