Skip to content
Prev Previous commit
Next Next commit
Remove extra single quotes
  • Loading branch information
Michael Conrad committed Oct 10, 2016
commit 9e6746ab834b681bddb60b2b78f4e472deb37f32
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