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 71be1c5 commit befc0e8Copy full SHA for befc0e8
src/run/runner/wall_time/perf/mod.rs
@@ -280,8 +280,11 @@ impl PerfRunner {
280
281
let perf_pid = OnceCell::new();
282
loop {
283
- let perf_ping = tokio::time::timeout(Duration::from_secs(1), perf_fifo.ping()).await;
+ let perf_ping =
284
+ tokio::time::timeout(Duration::from_secs(perf_ping_timeout), perf_fifo.ping())
285
+ .await;
286
if let Ok(Err(_)) | Err(_) = perf_ping {
287
+ debug!("Failed to ping perf FIFO, ending perf fifo loop");
288
break;
289
}
290
0 commit comments