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

Skip controller log limiting mm2 test in debug mode #11100

Merged
merged 1 commit into from
May 31, 2023
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
3 changes: 3 additions & 0 deletions tests/rptest/tests/controller_log_limiting_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
from requests.exceptions import HTTPError
from ducktape.utils.util import wait_until

from rptest.utils.mode_checks import skip_debug_mode

OPERATIONS_LIMIT = 3
TOO_MANY_REQUESTS_ERROR_CODE = 89
TOO_MANY_REQUESTS_HTTP_ERROR_CODE = 429
Expand Down Expand Up @@ -342,6 +344,7 @@ class ControllerLogLimitMirrorMakerTests(MirrorMakerService):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)

@skip_debug_mode
@cluster(num_nodes=10)
def test_mirror_maker_with_limits(self):
# start brokers
Expand Down