We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0153a4 commit e49e7c9Copy full SHA for e49e7c9
src/parallel/job_token/unix.rs
@@ -74,13 +74,6 @@ impl JobServerClient {
74
Some(libc::O_RDONLY) | Some(libc::O_RDWR),
75
Some(libc::O_WRONLY) | Some(libc::O_RDWR),
76
) => {
77
- // Optimization: Try converting it to a fifo by using /dev/fd
78
- if let Some(jobserver) =
79
- Self::from_fifo(Path::new(&format!("/dev/fd/{}", read.as_raw_fd())))
80
- {
81
- return Some(jobserver);
82
- }
83
-
84
let read = read.try_clone().ok()?;
85
let write = write.try_clone().ok()?;
86
0 commit comments