Skip to content
Snippets Groups Projects
Commit 358456c6912d authored by Hossein Pursultani's avatar Hossein Pursultani
Browse files

Fix Praefect configuration template for session pooled connection

Changelog: fix
parent 11bb03400184
No related branches found
No related tags found
3 merge requests!51Validate shift of Heptapod 0.25 to oldstable series,!47Making Heptapod 0.25 the new stable in Omnibus,!45GitLab 14.2
......@@ -87,9 +87,9 @@
<% direct_port = @database_direct_port || @database_port_no_proxy %>
<%= "host = '#{direct_host}'" if direct_host %>
<%= "port = #{direct_port}" if direct_port %>
<%= "user = #{@database_direct_user}" if @database_direct_user %>
<%= "password = #{@database_direct_password}" if @database_direct_password %>
<%= "dbname = #{@database_direct_dbname}" if @database_direct_dbname %>
<%= "user = '#{@database_direct_user}'" if @database_direct_user %>
<%= "password = '#{@database_direct_password}'" if @database_direct_password %>
<%= "dbname = '#{@database_direct_dbname}'" if @database_direct_dbname %>
<%= "sslmode = '#{@database_direct_sslmode}'" if @database_direct_sslmode %>
<%= "sslcert = '#{@database_direct_sslcert}'" if @database_direct_sslcert %>
<%= "sslkey = '#{@database_direct_sslkey}'" if @database_direct_sslkey %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment