Browse Source

Add env variable to disable prepared statements (#1293)

closed-social-glitch-2
Eugen 7 years ago
committed by GitHub
parent
commit
d5a675099a
2 changed files with 5 additions and 0 deletions
  1. +4
    -0
      .env.production.sample
  2. +1
    -0
      config/database.yml

+ 4
- 0
.env.production.sample View File

@ -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

+ 1
- 0
config/database.yml View File

@ -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' %>

Loading…
Cancel
Save