From 6ce14e2c9eb1ba81add3f61377a5a83854880b42 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Thu, 16 Apr 2020 23:13:15 +0200 Subject: Make all requests continue in the background even after we got enough responses. --- src/table.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/table.rs') diff --git a/src/table.rs b/src/table.rs index 162f98e6..33364514 100644 --- a/src/table.rs +++ b/src/table.rs @@ -280,7 +280,7 @@ impl Table { let resps = rpc_try_call_many( self.system.clone(), who, - &rpc_msg, + rpc_msg, quorum, self.param.timeout, ) @@ -384,6 +384,7 @@ impl Table { } pub async fn delete_range(&self, begin: &Hash, end: &Hash) -> Result<(), Error> { + eprintln!("({}) Deleting range {:?} - {:?}", self.name, begin, end); // TODO Ok(()) } -- cgit v1.2.3