Skip to content

Commit

Permalink
Merge pull request #14302 from abhijat/issue/8388/ignore-log-access-d…
Browse files Browse the repository at this point in the history
…enied

ducktape/cloud_storage: Ignore accessdenied errors
  • Loading branch information
abhijat authored Nov 3, 2023
2 parents 147cb5e + c04c01f commit db86bd6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/rptest/tests/topic_recovery_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1494,7 +1494,11 @@ def test_time_based_retention(self, cloud_storage_type):
self.rpk_producer_maker, topics)
self.do_run(test_case)

@cluster(num_nodes=4, log_allow_list=TRANSIENT_ERRORS)
@cluster(
num_nodes=4,
log_allow_list=TRANSIENT_ERRORS + [
r'unexpected REST API error "" detected, code: AccessDenied, .* resource: /recovery_state/kafka/.*'
])
@matrix(cloud_storage_type=get_cloud_storage_type())
def test_admin_api_recovery(self, cloud_storage_type):
topics = [
Expand Down

0 comments on commit db86bd6

Please sign in to comment.