K2V #293

Merged
lx merged 68 commits from k2v into main 2022-05-10 11:16:58 +00:00
Showing only changes of commit cc8b13f808 - Show all commits

View file

@ -179,7 +179,7 @@ impl<T: CounterSchema> IndexCounter<T> {
let pk = pk.clone();
let sk = sk.clone();
tokio::spawn(async move {
let dist_entry = new_entry.to_counter_entry::<T>(this_node, pk, sk);
let dist_entry = new_entry.into_counter_entry::<T>(this_node, pk, sk);
if let Err(e) = table.insert(&dist_entry).await {
warn!("({}) Could not propagate counter value: {}", T::NAME, e);
}
@ -195,7 +195,7 @@ struct LocalCounterEntry {
}
impl LocalCounterEntry {
fn to_counter_entry<T: CounterSchema>(
fn into_counter_entry<T: CounterSchema>(
self,
this_node: Uuid,
pk: T::P,