From a308069e32e226b5d212d41cf563a10208573169 Mon Sep 17 00:00:00 2001 From: Ron Kuris Date: Wed, 9 Oct 2024 09:44:05 -1000 Subject: [PATCH] Break after determining we can't reap the latest (#729) --- firewood/src/manager.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/firewood/src/manager.rs b/firewood/src/manager.rs index 41875644f..d2b8bfcfd 100644 --- a/firewood/src/manager.rs +++ b/firewood/src/manager.rs @@ -166,6 +166,7 @@ impl RevisionManager { Err(original) => { warn!("Oldest revision could not be reaped; still referenced"); self.historical.push_front(original); + break; } } }