diff --git a/pageserver/src/storage_sync.rs b/pageserver/src/storage_sync.rs index 611e961f4c..3fb17f9200 100644 --- a/pageserver/src/storage_sync.rs +++ b/pageserver/src/storage_sync.rs @@ -823,12 +823,12 @@ impl RemoteTimelineClient { fn upload_queue_items_metric(&self, delta: i64) { REMOTE_UPLOAD_QUEUE_UNFINISHED_TASKS - .get_metric_with_label_values(&[ - &self.tenant_id.to_string(), - &self.timeline_id.to_string(), - ]) - .unwrap() - .add(delta) + .get_metric_with_label_values(&[ + &self.tenant_id.to_string(), + &self.timeline_id.to_string(), + ]) + .unwrap() + .add(delta) } }