File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl BackgroundJob for SyncToGitIndex {
3030 type Context = Arc < Environment > ;
3131
3232 /// Regenerates or removes an index file for a single crate
33- #[ instrument( skip_all, fields( krate. name = ? self . krate) ) ]
33+ #[ instrument( skip_all, fields( krate. name = self . krate) ) ]
3434 async fn run ( & self , env : Self :: Context ) -> anyhow:: Result < ( ) > {
3535 info ! ( "Syncing to git index" ) ;
3636
@@ -97,7 +97,7 @@ impl BackgroundJob for SyncToSparseIndex {
9797 type Context = Arc < Environment > ;
9898
9999 /// Regenerates or removes an index file for a single crate
100- #[ instrument( skip_all, fields( krate. name = ? self . krate) ) ]
100+ #[ instrument( skip_all, fields( krate. name = self . krate) ) ]
101101 async fn run ( & self , env : Self :: Context ) -> anyhow:: Result < ( ) > {
102102 info ! ( "Syncing to sparse index" ) ;
103103
You can’t perform that action at this time.
0 commit comments