Skip to content

Commit 96abf73

Browse files
committed
fix default port
Signed-off-by: DogDu <[email protected]>
1 parent d2a9db5 commit 96abf73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ struct WorkerCli {
3333

3434
fn main() {
3535
let cli = WorkerCli::parse();
36-
let port = cli.driver_port0.unwrap_or(cli.driver_port1.unwrap_or(32766));
36+
let port = cli.driver_port0.unwrap_or(cli.driver_port1.unwrap_or(8080));
3737

3838
let _log_guard = init_log(
3939
env::var(LOG_FILE)

0 commit comments

Comments
 (0)