fix clippy
This commit is contained in:
parent
e9b796356a
commit
cc8b13f808
1 changed files with 2 additions and 2 deletions
|
@ -179,7 +179,7 @@ impl<T: CounterSchema> IndexCounter<T> {
|
||||||
let pk = pk.clone();
|
let pk = pk.clone();
|
||||||
let sk = sk.clone();
|
let sk = sk.clone();
|
||||||
tokio::spawn(async move {
|
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 {
|
if let Err(e) = table.insert(&dist_entry).await {
|
||||||
warn!("({}) Could not propagate counter value: {}", T::NAME, e);
|
warn!("({}) Could not propagate counter value: {}", T::NAME, e);
|
||||||
}
|
}
|
||||||
|
@ -195,7 +195,7 @@ struct LocalCounterEntry {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl LocalCounterEntry {
|
impl LocalCounterEntry {
|
||||||
fn to_counter_entry<T: CounterSchema>(
|
fn into_counter_entry<T: CounterSchema>(
|
||||||
self,
|
self,
|
||||||
this_node: Uuid,
|
this_node: Uuid,
|
||||||
pk: T::P,
|
pk: T::P,
|
||||||
|
|
Loading…
Reference in a new issue