Skip to content

Commit 1b8e676

Browse files
committed
refactor(walltime): rename FifoCommand::PingPerf to PingProfiler
1 parent 4261d90 commit 1b8e676

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/runner-shared/src/fifo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pub enum Command {
4646
StopBenchmark,
4747
Ack,
4848
#[deprecated(note = "Use `GetIntegrationMode` instead")]
49-
PingPerf,
49+
PingProfiler,
5050
SetIntegration {
5151
name: String,
5252
version: String,

src/executor/wall_time/perf/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ impl PerfRunner {
232232
FifoCommand::StopBenchmark => {
233233
perf_fifo.stop_events().await?;
234234
}
235-
FifoCommand::PingPerf => {
235+
FifoCommand::PingProfiler => {
236236
if perf_fifo.ping().await.is_err() {
237237
return Ok(Some(FifoCommand::Err));
238238
}

0 commit comments

Comments
 (0)