We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddd84ee commit 9ceb01cCopy full SHA for 9ceb01c
src/persist-client/src/internal/compact.rs
@@ -240,8 +240,12 @@ where
240
let res = Self::compact_and_apply(&machine, req)
241
.instrument(compact_span)
242
.await;
243
- if let Ok(maintenance) = res {
244
- maintenance.start_performing(&machine, &gc);
+
+ match res {
245
+ Ok(maintenance) => maintenance.start_performing(&machine, &gc),
246
+ Err(err) => {
247
+ debug!(shard_id =? machine.shard_id(), "compaction failed: {err:#}")
248
+ }
249
}
250
251
// we can safely ignore errors here, it's possible the caller
0 commit comments