Skip to content

Commit

Permalink
Use correct port for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-jimenez authored and sylvestre committed Jan 8, 2025
1 parent a11060a commit c7aef2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/harness/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ fn sccache_server_cfg(
},
cache_dir: Path::new(CONFIGS_CONTAINER_PATH).join(relpath),
public_addr: SocketAddr::new(server_ip, SERVER_PORT),
bind_address: Some(SocketAddr::from(([0, 0, 0, 0], SCHEDULER_PORT))),
bind_address: Some(SocketAddr::from(([0, 0, 0, 0], SERVER_PORT))),
scheduler_url,
scheduler_auth: sccache::config::server::SchedulerAuth::Token {
token: DIST_SERVER_TOKEN.to_owned(),
Expand Down

0 comments on commit c7aef2e

Please sign in to comment.