From d0ae8709a62c6ef1f16ea4cceb2d93cb5998e64a Mon Sep 17 00:00:00 2001 From: Vlad Lazar Date: Mon, 4 Sep 2023 12:44:55 +0100 Subject: [PATCH] rptest: allow ntr_no_topic_manifest in test_manifest_dump The test disables cloud storage at runtime. This may happen before the topic manifest upload goes through, so it's reasonable to allow the anomaly. --- tests/rptest/tests/shadow_indexing_admin_api_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/rptest/tests/shadow_indexing_admin_api_test.py b/tests/rptest/tests/shadow_indexing_admin_api_test.py index 899e6eddeb9e0..db9b14c004a87 100644 --- a/tests/rptest/tests/shadow_indexing_admin_api_test.py +++ b/tests/rptest/tests/shadow_indexing_admin_api_test.py @@ -209,3 +209,6 @@ def test_manifest_dump(self): with expect_http_error(400): not_enabled_response = self.admin.get_partition_manifest( "test-topic", 0) + + self.redpanda.si_settings.set_expected_damage( + {"ntr_no_topic_manifest"})