diff --git a/benchmark/src/main.rs b/benchmark/src/main.rs index 5ae4ad7a..01ed9af4 100644 --- a/benchmark/src/main.rs +++ b/benchmark/src/main.rs @@ -24,12 +24,12 @@ const LOG_FILE: &str = "GRPCIO_BENCHMARK_LOG_FILE"; struct WorkerCli { /// The port the worker should listen on. For example, 8080 #[arg(long)] - deriver_port: Option, + driver_port: Option, } fn main() { let cli = WorkerCli::parse(); - let port = cli.deriver_port.unwrap_or(8080); + let port = cli.driver_port.unwrap_or(8080); let _log_guard = init_log( env::var(LOG_FILE)