Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Sicheng Pan committed Dec 31, 2024
1 parent 86b2637 commit b4533be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion rust/worker/src/compactor/compaction_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ impl Handler<OneOffCompactionMessage> for CompactionManager {
type Result = ();
async fn handle(
&mut self,
message: OneOffCompactionMessage,
_message: OneOffCompactionMessage,
_ctx: &ComponentContext<CompactionManager>,
) {
tracing::info!("CompactionManager: Performing compaction");
Expand Down
1 change: 1 addition & 0 deletions rust/worker/src/compactor/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ pub struct ScheduledCompactionMessage {}

#[derive(Clone, Debug)]
pub struct OneOffCompactionMessage {
#[allow(dead_code)]
pub collection_ids: Option<Vec<CollectionUuid>>,
}

0 comments on commit b4533be

Please sign in to comment.