From 7a82ac20050525d6473f55ec8b0bee73d977c404 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 16 Oct 2018 21:51:52 +0200 Subject: [PATCH] fix joining in template --- templates/postgresql/data/postgresql.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/postgresql/data/postgresql.conf.j2 b/templates/postgresql/data/postgresql.conf.j2 index 7c42895..9dc7dfe 100644 --- a/templates/postgresql/data/postgresql.conf.j2 +++ b/templates/postgresql/data/postgresql.conf.j2 @@ -132,7 +132,7 @@ dynamic_shared_memory_type = posix # - Where to Log - -log_destination = '{{ postgres_log_destination | to_yaml | join(",") }}' +log_destination = '{{ postgres_log_destination | join(",") }}' # This is used when logging to stderr: {% if "stderr" in postgres_log_destination or "csvlog" in postgres_log_destination %} logging_collector = on