Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
morrisonlevi committed Dec 12, 2022
1 parent 4990cc4 commit 85cdec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddtelemetry/src/ipc/platform/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ mod tests {
.map(|p| format!("{}", p))
.unwrap_or_else(|| "self".into());

let fds_path = Path::new("/proc").join(proc).join("fd");
let fds_path = std::path::Path::new("/proc").join(proc).join("fd");
let fds = std::fs::read_dir(fds_path)?
.filter_map(|r| r.ok())
.filter_map(|r| {
Expand Down

0 comments on commit 85cdec2

Please sign in to comment.