diff options
author | Florian Klink <flokli@flokli.de> | 2023-10-08T11·40+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-10-08T22·50+0000 |
commit | a464088d2e3cc9bb0ff7a432d592157a811ef6c8 (patch) | |
tree | 6bc98f4e4f8b2eeb7a1631096d985984bc0d1d95 /tvix/store/Cargo.toml | |
parent | b6bf3a87f162be158fea1386de1ee87a53c4d65b (diff) |
test(tvix/store): use tokio-retry for exp backoff r/6743
Rather than using this loop, use exponential backoff while waiting for the socket path to be created. Change-Id: I3056b1525784cd712b1d81f84876c9ca0be10dc6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9569 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/Cargo.toml')
-rw-r--r-- | tvix/store/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index e4ebfc9a0f0f..43421ef4a302 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -77,6 +77,7 @@ tonic-build = "0.10.2" [dev-dependencies] test-case = "2.2.2" tempfile = "3.3.0" +tokio-retry = "0.3.0" [features] default = ["fuse", "tonic-reflection"] |