diff options
Diffstat (limited to 'tvix/store/src/pathinfoservice')
-rw-r--r-- | tvix/store/src/pathinfoservice/bigtable.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tvix/store/src/pathinfoservice/bigtable.rs b/tvix/store/src/pathinfoservice/bigtable.rs index cb16830165de..f49ef475eb37 100644 --- a/tvix/store/src/pathinfoservice/bigtable.rs +++ b/tvix/store/src/pathinfoservice/bigtable.rs @@ -119,7 +119,9 @@ impl BigtablePathInfoService { .expect("failed to spwan emulator"); Retry::spawn( - ExponentialBackoff::from_millis(20).max_delay(Duration::from_secs(1)), + ExponentialBackoff::from_millis(20) + .max_delay(Duration::from_secs(1)) + .take(3), || async { if socket_path.exists() { Ok(()) |