Skip to content

Commit 946772f

Browse files
committed
update error message
1 parent 066db8a commit 946772f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

query_router/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
147147
},
148148
Err(err) => {
149149
if err.to_string().contains("Address already in use") {
150-
tracing::error!("Port {} is already in use. Try setting a different port with the PORT environment variable.", port);
150+
tracing::error!("Port {} is already in use. Try setting a different port with the QUERY_ROUTER_PORT environment variable.", port);
151151
std::process::exit(1);
152152
} else {
153153
return Err(err.into());

0 commit comments

Comments
 (0)