aboutsummaryrefslogtreecommitdiff
path: root/src/model/index_counter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/index_counter.rs')
-rw-r--r--src/model/index_counter.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/model/index_counter.rs b/src/model/index_counter.rs
index b9594406..bcf55942 100644
--- a/src/model/index_counter.rs
+++ b/src/model/index_counter.rs
@@ -251,13 +251,9 @@ impl<T: CountedItem> IndexCounter<T> {
TR: TableReplication,
{
let save_counter_entry = |entry: CounterEntry<T>| -> Result<(), Error> {
- let entry_k = self
- .table
- .data
- .tree_key(entry.partition_key(), entry.sort_key());
self.table
.data
- .update_entry_with(&entry_k, |ent| match ent {
+ .update_entry_with(&entry.partition_key(), &entry.sort_key(), |ent| match ent {
Some(mut ent) => {
ent.merge(&entry);
ent