Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelScofield committed Aug 31, 2024
1 parent 03ea776 commit f24ce18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ jobs:
- name: Build greptime binaries
shell: bash
# `cargo gc` will invoke `cargo build` with specified args
# run: cargo gc -- --bin greptime --bin sqlness-runner
run: cargo build --bin greptime --bin sqlness-runner
run: cargo gc -- --bin greptime --bin sqlness-runner
- name: Pack greptime binaries
shell: bash
run: |
Expand Down
4 changes: 2 additions & 2 deletions src/mito2/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -959,10 +959,10 @@ impl WorkerListener {
}
}

pub(crate) fn on_compaction_scheduled(&self, region_id: RegionId) {
pub(crate) fn on_compaction_scheduled(&self, _region_id: RegionId) {
#[cfg(any(test, feature = "test"))]
if let Some(listener) = &self.listener {
listener.on_compaction_scheduled(region_id);
listener.on_compaction_scheduled(_region_id);
}
}
}
Expand Down

0 comments on commit f24ce18

Please sign in to comment.