From 063d9ef3f8e22544b6a3009c61517ed9be30eb0f Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Wed, 4 Feb 2026 09:31:26 -0800 Subject: [PATCH] fix(storage): add skip(provider) to check_consistency instrument (#21818) Co-authored-by: Amp --- crates/storage/provider/src/providers/static_file/manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/storage/provider/src/providers/static_file/manager.rs b/crates/storage/provider/src/providers/static_file/manager.rs index 2092bcd135..1ccc4771ec 100644 --- a/crates/storage/provider/src/providers/static_file/manager.rs +++ b/crates/storage/provider/src/providers/static_file/manager.rs @@ -1314,7 +1314,7 @@ impl StaticFileProvider { /// /// WARNING: No static file writer should be held before calling this function, otherwise it /// will deadlock. - #[instrument(skip(self), fields(read_only = self.is_read_only()))] + #[instrument(skip(self, provider), fields(read_only = self.is_read_only()))] pub fn check_consistency( &self, provider: &Provider,