mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
give logster its own redis connection
This commit is contained in:
parent
22d3bb1dd0
commit
0334179c6e
2 changed files with 5 additions and 7 deletions
10
Gemfile.lock
10
Gemfile.lock
|
@ -47,7 +47,6 @@ GEM
|
||||||
activerecord (>= 2.3.0)
|
activerecord (>= 2.3.0)
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
arel (4.0.2)
|
arel (4.0.2)
|
||||||
atomic (1.1.16)
|
|
||||||
barber (0.4.2)
|
barber (0.4.2)
|
||||||
ember-source
|
ember-source
|
||||||
execjs
|
execjs
|
||||||
|
@ -170,7 +169,7 @@ GEM
|
||||||
mock_redis (0.11.0)
|
mock_redis (0.11.0)
|
||||||
moneta (0.7.20)
|
moneta (0.7.20)
|
||||||
msgpack (0.5.8)
|
msgpack (0.5.8)
|
||||||
multi_json (1.9.2)
|
multi_json (1.10.0)
|
||||||
multi_xml (0.5.5)
|
multi_xml (0.5.5)
|
||||||
multipart-post (2.0.0)
|
multipart-post (2.0.0)
|
||||||
mustache (0.99.5)
|
mustache (0.99.5)
|
||||||
|
@ -260,7 +259,7 @@ GEM
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
thor (>= 0.18.1, < 2.0)
|
thor (>= 0.18.1, < 2.0)
|
||||||
raindrops (0.13.0)
|
raindrops (0.13.0)
|
||||||
rake (10.1.1)
|
rake (10.3.1)
|
||||||
rake-compiler (0.9.2)
|
rake-compiler (0.9.2)
|
||||||
rake
|
rake
|
||||||
rb-fsevent (0.9.4)
|
rb-fsevent (0.9.4)
|
||||||
|
@ -362,9 +361,8 @@ GEM
|
||||||
daemons (>= 1.0.9)
|
daemons (>= 1.0.9)
|
||||||
eventmachine (>= 1.0.0)
|
eventmachine (>= 1.0.0)
|
||||||
rack (>= 1.0.0)
|
rack (>= 1.0.0)
|
||||||
thor (0.18.1)
|
thor (0.19.1)
|
||||||
thread_safe (0.2.0)
|
thread_safe (0.3.3)
|
||||||
atomic (>= 1.1.7, < 2)
|
|
||||||
tilt (1.4.1)
|
tilt (1.4.1)
|
||||||
timecop (0.7.1)
|
timecop (0.7.1)
|
||||||
timers (1.1.0)
|
timers (1.1.0)
|
||||||
|
|
|
@ -132,7 +132,7 @@ module Discourse
|
||||||
# Use redis for our cache
|
# Use redis for our cache
|
||||||
config.cache_store = DiscourseRedis.new_redis_store
|
config.cache_store = DiscourseRedis.new_redis_store
|
||||||
$redis = DiscourseRedis.new
|
$redis = DiscourseRedis.new
|
||||||
Logster.store = Logster::RedisStore.new($redis)
|
Logster.store = Logster::RedisStore.new(DiscourseRedis.new)
|
||||||
|
|
||||||
# we configure rack cache on demand in an initializer
|
# we configure rack cache on demand in an initializer
|
||||||
# our setup does not use rack cache and instead defers to nginx
|
# our setup does not use rack cache and instead defers to nginx
|
||||||
|
|
Loading…
Reference in a new issue