Skip to content
Merged
Prev Previous commit
Next Next commit
Add single quotes to config template
  • Loading branch information
Michael Conrad committed Oct 10, 2016
commit c99d88921ffc3458b98acb0422f22b7146e40a8a
2 changes: 1 addition & 1 deletion templates/postgresql.conf-9.6.j2
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ track_commit_timestamp = {{'on' if postgresql_track_commit_timestamp else 'off'

# These settings are ignored on a standby server.

synchronous_standby_names = {{postgresql_synchronous_standby_num_sync}} ({{postgresql_synchronous_standby_names|join(',')}}) # standby servers that provide sync rep
synchronous_standby_names = '{{postgresql_synchronous_standby_num_sync}} ({{postgresql_synchronous_standby_names|join(',')}})' # standby servers that provide sync rep
# number of sync standbys and comma-separated list of application_name
# from standby(s); '*' = all
vacuum_defer_cleanup_age = {{postgresql_vacuum_defer_cleanup_age}} # number of xacts by which cleanup is delayed
Expand Down