From 0865ed623c2cfa75ea813014892ef58443881536 Mon Sep 17 00:00:00 2001 From: Alex Chi Date: Thu, 22 Jun 2023 15:01:25 -0400 Subject: [PATCH] fix comment Signed-off-by: Alex Chi --- pageserver/src/tenant/timeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/tenant/timeline.rs b/pageserver/src/tenant/timeline.rs index 139e0e39d2..e56e7bb9a8 100644 --- a/pageserver/src/tenant/timeline.rs +++ b/pageserver/src/tenant/timeline.rs @@ -3857,7 +3857,7 @@ impl Timeline { let mut compact_tiers = Vec::new(); for (tier_id, size) in tier_sizes { if total_size_up_to_lvl != 0 && total_size_up_to_lvl as f64 / size as f64 > size_ratio { - info!("full compaction triggered by size ratio"); + info!("compaction triggered by size ratio"); return Some(compact_tiers); } total_size_up_to_lvl += size;