Skip to content

Commit 6967d05

Browse files
committed
address comment
Signed-off-by: Jay Lee <busyjaylee@gmail.com>
1 parent 4840162 commit 6967d05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ const LOG_FILE: &str = "GRPCIO_BENCHMARK_LOG_FILE";
2424
struct WorkerCli {
2525
/// The port the worker should listen on. For example, 8080
2626
#[arg(long)]
27-
deriver_port: Option<u16>,
27+
driver_port: Option<u16>,
2828
}
2929

3030
fn main() {
3131
let cli = WorkerCli::parse();
32-
let port = cli.deriver_port.unwrap_or(8080);
32+
let port = cli.driver_port.unwrap_or(8080);
3333

3434
let _log_guard = init_log(
3535
env::var(LOG_FILE)

0 commit comments

Comments
 (0)