Skip to content

Commit 0b023e7

Browse files
authored
fix: exposing proper port for pod config (#208)
1 parent b4440f9 commit 0b023e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrationos-api/src/logic/connection.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ async fn generate_k8s_specs_and_secret(
397397

398398
let database_pod_config = DatabasePodConfig {
399399
worker_threads: Some(1),
400-
address: "0.0.0.0:5000".parse().map_err(|_| {
400+
address: "0.0.0.0:5005".parse().map_err(|_| {
401401
InternalError::serialize_error("Unable to convert address to SocketAddr", None)
402402
})?,
403403
environment: state.config.environment,

0 commit comments

Comments
 (0)