@tiledesk/tiledesk-server 2.3.78 → 2.3.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -14,13 +14,13 @@ class Listener {
|
|
14
14
|
}
|
15
15
|
|
16
16
|
var port = process.env.CACHE_REDIS_PORT || 6379;
|
17
|
-
winston.debug("
|
17
|
+
winston.debug("Redis port: "+ port);
|
18
18
|
|
19
19
|
var host = process.env.CACHE_REDIS_HOST || "127.0.0.1"
|
20
|
-
winston.debug("
|
20
|
+
winston.debug("Redis host: "+ host);
|
21
21
|
|
22
|
-
var password = process.env.
|
23
|
-
winston.debug("
|
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/"
|