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 066db8a commit 946772fCopy full SHA for 946772f
query_router/src/main.rs
@@ -147,7 +147,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
147
},
148
Err(err) => {
149
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);
+ tracing::error!("Port {} is already in use. Try setting a different port with the QUERY_ROUTER_PORT environment variable.", port);
151
std::process::exit(1);
152
} else {
153
return Err(err.into());
0 commit comments