logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: d5a675099a0ccf0c35ce1756f5015108cda1489a
parent: c3e7bac1ccd1b40724f4603052e3c50a1741f5f6
Author: Eugen <eugen@zeonfederated.com>
Date:   Sun,  9 Apr 2017 05:46:32 +0200

Add env variable to disable prepared statements (#1293)


Diffstat:

M.env.production.sample4++++
Mconfig/database.yml1+
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/.env.production.sample b/.env.production.sample @@ -63,3 +63,7 @@ SMTP_FROM_ADDRESS=notifications@example.com # Streaming API integration # STREAMING_API_BASE_URL= + +# Advanced settings +# If you need to use pgBouncer, you need to disable prepared statements: +# PREPARED_STATEMENTS=false diff --git a/config/database.yml b/config/database.yml @@ -22,3 +22,4 @@ production: password: <%= ENV['DB_PASS'] || '' %> host: <%= ENV['DB_HOST'] || 'localhost' %> port: <%= ENV['DB_PORT'] || 5432 %> + prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %>