Skip to content

Commit

Permalink
Remove extra quotes from log_line_prefix (#733)
Browse files Browse the repository at this point in the history
Remove extra single quotes from the log_line_prefix option.
  • Loading branch information
vitabaks authored Aug 15, 2024
1 parent 9473b4a commit 5a3abf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ postgresql_parameters:
- { option: "log_truncate_on_rotation", value: "on" }
- { option: "log_rotation_age", value: "1d" }
- { option: "log_rotation_size", value: "0" }
- { option: "log_line_prefix", value: "'%t [%p-%l] %r %q%u@%d '" }
- { option: "log_line_prefix", value: "%t [%p-%l] %r %q%u@%d " }
- { option: "log_filename", value: "postgresql-%a.log" }
- { option: "log_directory", value: "{{ postgresql_log_dir }}" }
- { option: "hot_standby_feedback", value: "on" } # allows feedback from a hot standby to the primary that will avoid query conflicts
Expand Down

0 comments on commit 5a3abf2

Please sign in to comment.