Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: allow chaos error msg for cluster health test #4905

Merged
merged 1 commit into from
May 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions tests/rptest/tests/cluster_health_overview_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
from rptest.clients.types import TopicSpec
from rptest.services.admin import Admin
from rptest.tests.redpanda_test import RedpandaTest
from rptest.services.rpk_producer import RpkProducer
from rptest.tests.end_to_end import EndToEndTest
from rptest.services.redpanda import RESTART_LOG_ALLOW_LIST

from ducktape.utils.util import wait_until

Expand Down Expand Up @@ -41,7 +40,7 @@ def is_healthy():

wait_until(is_healthy, 30, 2)

@cluster(num_nodes=5)
@cluster(num_nodes=5, log_allow_list=RESTART_LOG_ALLOW_LIST)
def cluster_health_overview_baseline_test(self):
self.create_topics()

Expand Down