Showing
1 changed file
with
3 additions
and
1 deletions
@@ -132,6 +132,7 @@ module.exports = { | @@ -132,6 +132,7 @@ module.exports = { | ||
132 | connect: { | 132 | connect: { |
133 | host: '127.0.0.1', | 133 | host: '127.0.0.1', |
134 | port: '6379', | 134 | port: '6379', |
135 | + password: '', | ||
135 | enable_offline_queue: false, | 136 | enable_offline_queue: false, |
136 | retry_strategy(options) { | 137 | retry_strategy(options) { |
137 | if (options.error && options.error.code === 'ECONNREFUSED') { | 138 | if (options.error && options.error.code === 'ECONNREFUSED') { |
@@ -215,8 +216,9 @@ if (isProduction) { | @@ -215,8 +216,9 @@ if (isProduction) { | ||
215 | }, | 216 | }, |
216 | redis: { | 217 | redis: { |
217 | connect: { | 218 | connect: { |
218 | - host: 'web.redis.yohoops.org', | 219 | + host: 'redis.web.yohoops.org', |
219 | port: '6379', | 220 | port: '6379', |
221 | + password: 'redis9646', | ||
220 | enable_offline_queue: false, | 222 | enable_offline_queue: false, |
221 | retry_strategy(options) { | 223 | retry_strategy(options) { |
222 | if (options.error && options.error.code === 'ECONNREFUSED') { | 224 | if (options.error && options.error.code === 'ECONNREFUSED') { |
-
Please register or login to post a comment