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

Disable test_cancellations_interrupted_with_restarts in debug #11519

Merged
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
4 changes: 3 additions & 1 deletion tests/rptest/tests/partition_move_interruption_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from rptest.services.admin import Admin
from rptest.tests.partition_movement import PartitionMovementMixin
from rptest.services.redpanda import RESTART_LOG_ALLOW_LIST, SISettings, MetricsEndpoint
from rptest.utils.mode_checks import cleanup_on_early_exit
from rptest.utils.mode_checks import cleanup_on_early_exit, skip_debug_mode

NO_RECOVERY = "no_recovery"
RESTART_RECOVERY = "restart_recovery"
Expand Down Expand Up @@ -601,6 +601,8 @@ def move_finished():

wait_until(move_finished, 30, backoff_sec=1)

#TODO: investigate slow startups in debug mode
@skip_debug_mode
@cluster(num_nodes=7, log_allow_list=RESTART_LOG_ALLOW_LIST)
@matrix(replication_factor=[1, 3])
def test_cancellations_interrupted_with_restarts(self, replication_factor):
Expand Down