Skip to content

Commit

Permalink
tests: temporarily allow out_of_range errs in TopicDeleteStressTest
Browse files Browse the repository at this point in the history
This is a lighter touch than marking the test ok_to_fail:
we are specifically just tolerating failures that result
from the unexpected RPC error.

Related: redpanda-data#4326
  • Loading branch information
jcsp committed Apr 21, 2022
1 parent 7c96fab commit 7bac61f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/rptest/tests/topic_delete_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ def __init__(self, test_context):
num_brokers=3,
extra_rp_conf=extra_rp_conf)

@cluster(num_nodes=4)
# log_allow_list should not be needed here: it is a workaround pending
# investigation of https://github.com/redpanda-data/redpanda/issues/4326
@cluster(num_nodes=4, log_allow_list=["rpc - .* - std::out_of_range"])
def stress_test(self):
for i in range(10):
spec = TopicSpec(partition_count=2,
Expand Down

0 comments on commit 7bac61f

Please sign in to comment.