Skip to content

Commit

Permalink
tests: skip topic_delete_unavailable_test in debug mode
Browse files Browse the repository at this point in the history
To pass reliably, this test requires that object storage
PUTs complete promptly enough to complete within
the 5 second graceful leaderhip transfer window.  Otherwise
orphan objects can be left behind and fail the test's expectation
of a clean delete.
  • Loading branch information
jcsp committed Feb 21, 2023
1 parent 05d08f7 commit 4f9bc2d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/rptest/tests/topic_delete_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from ducktape.mark import matrix, parametrize
from requests.exceptions import HTTPError

from rptest.utils.mode_checks import skip_debug_mode
from rptest.services.cluster import cluster
from rptest.clients.types import TopicSpec
from rptest.clients.offline_log_viewer import OfflineLogViewer
Expand Down Expand Up @@ -270,6 +271,7 @@ def topic_delete_installed_snapshots_test(self):
timeout_sec=30,
backoff_sec=1)

@skip_debug_mode # Rely on timely uploads during leader transfers
@cluster(
num_nodes=3,
log_allow_list=[
Expand Down

0 comments on commit 4f9bc2d

Please sign in to comment.