Merge branch 'main' into next-v2

This commit is contained in:
Alex Auvolat
2025-02-05 21:00:19 +01:00
23 changed files with 21 additions and 67 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
use std::future::Future;
use std::sync::Arc;
use std::time::Duration;
@@ -104,7 +105,7 @@ trait TableRepair: Send + Sync + 'static {
&mut self,
garage: &Garage,
entry: <<Self as TableRepair>::T as TableSchema>::E,
) -> impl std::future::Future<Output = Result<bool, GarageError>> + Send;
) -> impl Future<Output = Result<bool, GarageError>> + Send;
}
struct TableRepairWorker<T: TableRepair> {