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

[rptest] Fix "ContainerAlreadyExists" in test_recovery_mode #24501

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion tests/rptest/services/redpanda.py
Original file line number Diff line number Diff line change
Expand Up @@ -3383,7 +3383,7 @@ def start_si(self):
)
else:
raise RuntimeError(
f"Unsuported cloud_storage_type: {self.si_settings.cloud_storage_type}"
f"Unsupported cloud_storage_type: {self.si_settings.cloud_storage_type}"
)

if not self.si_settings.bypass_bucket_creation:
Expand Down
4 changes: 3 additions & 1 deletion tests/rptest/tests/recovery_mode_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ def test_recovery_mode(self):

# check that a new node can join the cluster

self.redpanda.start(nodes=[joiner_node], auto_assign_node_id=True)
self.redpanda.start(nodes=[joiner_node],
auto_assign_node_id=True,
start_si=False)
self.redpanda.wait_for_membership(first_start=True)

# restart the cluster back in normal mode
Expand Down
Loading