From 017ce4e59e4a9c41bbc92314da13011acb5e87b6 Mon Sep 17 00:00:00 2001 From: James Coglan Date: Sat, 25 Feb 2012 13:35:29 +0000 Subject: [PATCH] Set default host to 127.0.0.1. --- faye-redis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faye-redis.js b/faye-redis.js index 814aa24..6cb220d 100644 --- a/faye-redis.js +++ b/faye-redis.js @@ -41,7 +41,7 @@ Engine.create = function(server, options) { }; Engine.prototype = { - DEFAULT_HOST: 'localhost', + DEFAULT_HOST: '127.0.0.1', DEFAULT_PORT: 6379, DEFAULT_DATABASE: 0, DEFAULT_GC: 60,