Skip to content

Commit a91b036

Browse files
committed
server: Fix env var in script
1 parent acea446 commit a91b036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/commands/start.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ async fn start_orchestrator(config: &ServerConfig) -> Result<u32> {
125125
let child = Command::new(&binary_path)
126126
.env("POLOS_LOCAL_MODE", "true")
127127
.env("DATABASE_URL", &config.database_url)
128-
.env("BIND_ADDRESS", &bind_address)
128+
.env("POLOS_BIND_ADDRESS", &bind_address)
129129
.env("CORS_ORIGIN", &cors_origin)
130130
.env("HMAC_SECRET", &hmac_secret)
131131
.stdout(Stdio::from(stdout_log))

0 commit comments

Comments
 (0)