Skip to content

Commit 07b3126

Browse files
committed
Fix lb bug in peadm::setup::node_manager class
When this was refactored, the wrong defaults were given to the compiler load balancer address variables. They should default to the A and B *servers*, not the A and B postgresql hosts.
1 parent b156397 commit 07b3126

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: manifests/setup/node_manager.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
Optional[String[1]] $postgresql_b_host = $server_b_host,
3232

3333
Optional[String[1]] $compiler_pool_address = undef,
34-
Optional[String[1]] $internal_compiler_a_pool_address = $postgresql_a_host,
35-
Optional[String[1]] $internal_compiler_b_pool_address = $postgresql_b_host,
34+
Optional[String[1]] $internal_compiler_a_pool_address = $server_a_host,
35+
Optional[String[1]] $internal_compiler_b_pool_address = $server_b_host,
3636
) {
3737

3838
# "Not-configured" placeholder string. This will be used in places where we

0 commit comments

Comments
 (0)