Skip to content
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
4 changes: 2 additions & 2 deletions tests/rptest/services/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ def _do_post_test_checks(
f"Test {status_str}, doing failure checks on {redpanda.who_am_i()}..."
)

redpanda.export_cluster_config()

if not test_failed and check_allowed_error_logs:
# Only do log inspections on tests that are otherwise
# successful. This executes *before* the end-of-test
Expand All @@ -155,8 +157,6 @@ def _do_post_test_checks(
redpanda.cloud_storage_diagnostics()
raise

redpanda.export_cluster_config()

if isinstance(redpanda, RedpandaService):
if test_failed:
redpanda.cloud_storage_diagnostics()
Expand Down
4 changes: 4 additions & 0 deletions tests/rptest/tests/audit_log_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2019,6 +2019,8 @@ def __init__(self, test_context):
log_allow_list=[
r"Failed to append authentication event to audit log",
r"Failed to audit.*",
# This comes from logging the cluster configuration at the post-ops of the test"
r"modify or view cluster configuration was not audited due to audit queues being full.*",
],
)
@matrix(audit_transport_mode=get_audit_modes())
Expand Down Expand Up @@ -2071,6 +2073,8 @@ def __init__(self, test_context):
r"Failed to append authentication event to audit log",
r"Failed to audit.*",
r"Failed to enqueue mTLS authentication event - audit log system error",
# This comes from logging the cluster configuration at the post-ops of the test"
r"modify or view cluster configuration was not audited due to audit queues being full.*",
],
)
@matrix(audit_transport_mode=get_audit_modes())
Expand Down