Add env variable to disable prepared statements (#1293)
这个提交存在于:
父节点
c3e7bac1cc
当前提交
d5a675099a
共有 2 个文件被更改,包括 5 次插入 和 0 次删除
|
|
@ -63,3 +63,7 @@ SMTP_FROM_ADDRESS=notifications@example.com
|
||||||
|
|
||||||
# Streaming API integration
|
# Streaming API integration
|
||||||
# STREAMING_API_BASE_URL=
|
# STREAMING_API_BASE_URL=
|
||||||
|
|
||||||
|
# Advanced settings
|
||||||
|
# If you need to use pgBouncer, you need to disable prepared statements:
|
||||||
|
# PREPARED_STATEMENTS=false
|
||||||
|
|
|
||||||
|
|
@ -22,3 +22,4 @@ production:
|
||||||
password: <%= ENV['DB_PASS'] || '' %>
|
password: <%= ENV['DB_PASS'] || '' %>
|
||||||
host: <%= ENV['DB_HOST'] || 'localhost' %>
|
host: <%= ENV['DB_HOST'] || 'localhost' %>
|
||||||
port: <%= ENV['DB_PORT'] || 5432 %>
|
port: <%= ENV['DB_PORT'] || 5432 %>
|
||||||
|
prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %>
|
||||||
|
|
|
||||||
正在加载…
添加表格
在新工单中引用