@tiledesk/tiledesk-server 2.3.78 → 2.3.79

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-server",
3
3
  "description": "The Tiledesk server module",
4
- "version": "2.3.78",
4
+ "version": "2.3.79",
5
5
  "scripts": {
6
6
  "start": "node ./bin/www",
7
7
  "pretest": "mongodb-runner start",
@@ -14,13 +14,13 @@ class Listener {
14
14
  }
15
15
 
16
16
  var port = process.env.CACHE_REDIS_PORT || 6379;
17
- winston.debug("-Redis port: "+ port);
17
+ winston.debug("Redis port: "+ port);
18
18
 
19
19
  var host = process.env.CACHE_REDIS_HOST || "127.0.0.1"
20
- winston.debug("-Redis host: "+ host);
20
+ winston.debug("Redis host: "+ host);
21
21
 
22
- var password = process.env.REDIS_PASSWORD;
23
- winston.debug("-Redis password: "+ password);
22
+ var password = process.env.CACHE_REDIS_PASSWORD;
23
+ winston.debug("Redis password: "+ password);
24
24
 
25
25
 
26
26
  let graph_url = process.env.META_GRAPH_URL || config.graphUrl || "https://graph.facebook.com/v14.0/"