mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
FIX: downgrade pg to stop memory leak
This commit is contained in:
parent
a69cb90a90
commit
cd0fa12562
2 changed files with 6 additions and 3 deletions
5
Gemfile
5
Gemfile
|
@ -145,7 +145,10 @@ gem 'omniauth-github-discourse', require: 'omniauth-github'
|
||||||
gem 'omniauth-oauth2', require: false
|
gem 'omniauth-oauth2', require: false
|
||||||
gem 'omniauth-google-oauth2'
|
gem 'omniauth-google-oauth2'
|
||||||
gem 'oj'
|
gem 'oj'
|
||||||
gem 'pg'
|
# pg is downgraded while we investigate a severe memory issu
|
||||||
|
# during multi threading that shows up on 0.18.1
|
||||||
|
# This also means we DO NOT work on Ruby 2.2 at the moment
|
||||||
|
gem 'pg', '0.15.1'
|
||||||
gem 'pry-rails', require: false
|
gem 'pry-rails', require: false
|
||||||
gem 'rake'
|
gem 'rake'
|
||||||
|
|
||||||
|
|
|
@ -282,7 +282,7 @@ GEM
|
||||||
openid-redis-store (0.0.2)
|
openid-redis-store (0.0.2)
|
||||||
redis
|
redis
|
||||||
ruby-openid
|
ruby-openid
|
||||||
pg (0.18.1)
|
pg (0.15.1)
|
||||||
polyglot (0.3.5)
|
polyglot (0.3.5)
|
||||||
progress (3.0.1)
|
progress (3.0.1)
|
||||||
pry (0.10.1)
|
pry (0.10.1)
|
||||||
|
@ -508,7 +508,7 @@ DEPENDENCIES
|
||||||
omniauth-twitter
|
omniauth-twitter
|
||||||
onebox
|
onebox
|
||||||
openid-redis-store
|
openid-redis-store
|
||||||
pg
|
pg (= 0.15.1)
|
||||||
pry-nav
|
pry-nav
|
||||||
pry-rails
|
pry-rails
|
||||||
puma
|
puma
|
||||||
|
|
Loading…
Reference in a new issue