aboutsummaryrefslogtreecommitdiff
path: root/src/table
diff options
context:
space:
mode:
authorAlex <alex@adnab.me>2022-09-13 16:49:05 +0200
committerAlex <alex@adnab.me>2022-09-13 16:49:05 +0200
commit80fdbfb0aa1b7186db3aeef888c0954748a35c62 (patch)
tree20c275ab7019b9c1458e4c2daef56a1b93411f8a /src/table
parent11bdc971e2aaa1ef90358b7d9c1bd6a8e9743bbf (diff)
parentab722cb40f5aacf661a280b7eb025acd3aefc1bb (diff)
downloadgarage-80fdbfb0aa1b7186db3aeef888c0954748a35c62.tar.gz
garage-80fdbfb0aa1b7186db3aeef888c0954748a35c62.zip
Merge pull request 'various fixes for v0.8.0' (#380) from various-fixes-for-0.8 into mainv0.8.0-beta1
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/380
Diffstat (limited to 'src/table')
-rw-r--r--src/table/table.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/table/table.rs b/src/table/table.rs
index 51f3837f..8e801be6 100644
--- a/src/table/table.rs
+++ b/src/table/table.rs
@@ -113,7 +113,6 @@ where
async fn insert_internal(&self, e: &F::E) -> Result<(), Error> {
let hash = e.partition_key().hash();
let who = self.data.replication.write_nodes(&hash);
- //eprintln!("insert who: {:?}", who);
let e_enc = Arc::new(ByteBuf::from(rmp_to_vec_all_named(e)?));
let rpc = TableRpc::<F>::Update(vec![e_enc]);