From 2f744ebb2e4c6f378ddc0742d1338ac57224f836 Mon Sep 17 00:00:00 2001 From: Stephan Dollberg Date: Tue, 2 Jul 2024 15:36:14 +0100 Subject: [PATCH] tests: Downgrade warning for non-fatal anomalies Lots of tests implicitly trigger the non-fatal cases as they don't wait for all uploads to finish. It being a warning means it gets output on the main DT output (the one with all the test results) and hence causes quite a bit of noise. --- tests/rptest/services/redpanda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rptest/services/redpanda.py b/tests/rptest/services/redpanda.py index 2d45ba89663a5..d0f5db699e07a 100644 --- a/tests/rptest/services/redpanda.py +++ b/tests/rptest/services/redpanda.py @@ -4733,7 +4733,7 @@ def stop_and_scrub_object_storage(self, run_timeout=300): if not any_anomalies: self.logger.info(f"No anomalies in object storage scrub") elif not fatal_anomalies: - self.logger.warn( + self.logger.info( f"Non-fatal anomalies in remote storage: {json.dumps(report, indent=2)}" ) else: