Skip to content

Commit

Permalink
fixed one last lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Hull <[email protected]>
  • Loading branch information
jakedipity committed Nov 17, 2023
1 parent 9b1f780 commit b54ca41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common/fs/src/tail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn handle_event(
let entry = entries.get(entry_ptr)?;
let paths = fs.resolve_valid_paths(entry, &entries);
if !paths.is_empty() {
tracing::Span::current().record("file_path", &paths[0].as_path().to_str().unwrap());
tracing::Span::current().record("file_path", paths[0].as_path().to_str().unwrap());
}
}
}
Expand Down

0 comments on commit b54ca41

Please sign in to comment.