Skip to content

Commit dc8b816

Browse files
committed
Fix clippy warning
1 parent eed5f9e commit dc8b816

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/sui-analytics-indexer/src/analytics_processor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ impl<S: Serialize + ParquetSchema + Send + Sync + 'static> Worker for AnalyticsP
9797
.with_label_values(&[self.name()])
9898
.inc();
9999

100-
let iter = self.handler.process_checkpoint(&checkpoint_data).await?;
100+
let iter = self.handler.process_checkpoint(checkpoint_data).await?;
101101
{
102102
let mut writer = state.writer.lock().unwrap();
103103
writer.write(iter)?;

0 commit comments

Comments
 (0)