From ca7fd25685a6cdb8f2209cd28fa421e020d05171 Mon Sep 17 00:00:00 2001 From: AnieeG Date: Tue, 17 Oct 2023 14:50:37 -0700 Subject: [PATCH] fix error --- integration-tests/docker/test_env/cl_node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/docker/test_env/cl_node.go b/integration-tests/docker/test_env/cl_node.go index dbf9fdffaa..3a34b354b6 100644 --- a/integration-tests/docker/test_env/cl_node.go +++ b/integration-tests/docker/test_env/cl_node.go @@ -249,7 +249,7 @@ func (n *ClNode) StartContainer() error { nodeSecretsToml, err := templates.NodeSecretsTemplate{ PgDbName: n.PostgresDb.DbName, PgHost: n.PostgresDb.ContainerName, - PgPort: n.PostgresDb.Port, + PgPort: n.PostgresDb.InternalPort, PgPassword: n.PostgresDb.Password, CustomSecrets: n.NodeSecretsConfigTOML, }.String()