Small refactorings

This commit is contained in:
Alex Auvolat
2020-04-12 22:24:53 +02:00
parent 9f8b3b5a18
commit 2bea76ce16
7 changed files with 22 additions and 21 deletions
+2 -2
View File
@@ -221,7 +221,7 @@ async fn put_block(garage: Arc<Garage>, hash: Hash, data: Vec<u8>) -> Result<(),
&who[..],
&Message::PutBlock(PutBlockMessage { hash, data }),
(garage.system.config.data_replication_factor + 1) / 2,
DEFAULT_TIMEOUT,
BLOCK_RW_TIMEOUT,
)
.await?;
Ok(())
@@ -368,7 +368,7 @@ async fn get_block(garage: Arc<Garage>, hash: &Hash) -> Result<Vec<u8>, Error> {
&who[..],
&Message::GetBlock(hash.clone()),
1,
DEFAULT_TIMEOUT,
BLOCK_RW_TIMEOUT,
)
.await?;