Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/worker/jobs/index/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl BackgroundJob for SyncToGitIndex {
type Context = Arc<Environment>;

/// Regenerates or removes an index file for a single crate
#[instrument(skip_all, fields(krate.name = ? self.krate))]
#[instrument(skip_all, fields(krate.name = self.krate))]
async fn run(&self, env: Self::Context) -> anyhow::Result<()> {
info!("Syncing to git index");

Expand Down Expand Up @@ -97,7 +97,7 @@ impl BackgroundJob for SyncToSparseIndex {
type Context = Arc<Environment>;

/// Regenerates or removes an index file for a single crate
#[instrument(skip_all, fields(krate.name = ?self.krate))]
#[instrument(skip_all, fields(krate.name = self.krate))]
async fn run(&self, env: Self::Context) -> anyhow::Result<()> {
info!("Syncing to sparse index");

Expand Down