diff options
author | Alex <alex@adnab.me> | 2022-09-13 16:49:05 +0200 |
---|---|---|
committer | Alex <alex@adnab.me> | 2022-09-13 16:49:05 +0200 |
commit | 80fdbfb0aa1b7186db3aeef888c0954748a35c62 (patch) | |
tree | 20c275ab7019b9c1458e4c2daef56a1b93411f8a /src/table | |
parent | 11bdc971e2aaa1ef90358b7d9c1bd6a8e9743bbf (diff) | |
parent | ab722cb40f5aacf661a280b7eb025acd3aefc1bb (diff) | |
download | garage-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.rs | 1 |
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]); |