diff options
Diffstat (limited to 'src/block.rs')
-rw-r--r-- | src/block.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block.rs b/src/block.rs index 200b4201..a0701b97 100644 --- a/src/block.rs +++ b/src/block.rs @@ -86,7 +86,7 @@ impl BlockManager { Ok(f) => f, Err(e) => { // Not found but maybe we should have had it ?? - self.put_to_resync(hash, DEFAULT_TIMEOUT.as_millis() as u64)?; + self.put_to_resync(hash, 0)?; return Err(Into::into(e)); } }; |