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 4840162 commit 6967d05Copy full SHA for 6967d05
benchmark/src/main.rs
@@ -24,12 +24,12 @@ const LOG_FILE: &str = "GRPCIO_BENCHMARK_LOG_FILE";
24
struct WorkerCli {
25
/// The port the worker should listen on. For example, 8080
26
#[arg(long)]
27
- deriver_port: Option<u16>,
+ driver_port: Option<u16>,
28
}
29
30
fn main() {
31
let cli = WorkerCli::parse();
32
- let port = cli.deriver_port.unwrap_or(8080);
+ let port = cli.driver_port.unwrap_or(8080);
33
34
let _log_guard = init_log(
35
env::var(LOG_FILE)
0 commit comments