config: fix spring randomly crashing in the pg gem
See https://github.com/ged/ruby-pg/issues/311
This commit is contained in:
parent
1adb197e96
commit
b0db74ea79
1 changed files with 4 additions and 0 deletions
|
@ -15,6 +15,8 @@ development:
|
||||||
host: <%= ENV["DB_HOST"] %>
|
host: <%= ENV["DB_HOST"] %>
|
||||||
username: <%= ENV["DB_USERNAME"] %>
|
username: <%= ENV["DB_USERNAME"] %>
|
||||||
password: <%= ENV["DB_PASSWORD"] %>
|
password: <%= ENV["DB_PASSWORD"] %>
|
||||||
|
# Workaround for https://github.com/ged/ruby-pg/issues/311
|
||||||
|
gssencmode: disable
|
||||||
|
|
||||||
test:
|
test:
|
||||||
<<: *default
|
<<: *default
|
||||||
|
@ -22,6 +24,8 @@ test:
|
||||||
host: localhost
|
host: localhost
|
||||||
username: tps_test
|
username: tps_test
|
||||||
password: tps_test
|
password: tps_test
|
||||||
|
# Workaround for https://github.com/ged/ruby-pg/issues/311
|
||||||
|
gssencmode: disable
|
||||||
|
|
||||||
production: &production
|
production: &production
|
||||||
<<: *default
|
<<: *default
|
||||||
|
|
Loading…
Reference in a new issue