Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Oct 20, 2014
1 parent 003ba65 commit 7446a76
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ mosquitto.db
*rdb
coverage/
public/*
data/
4 changes: 2 additions & 2 deletions lib/persistence/redis.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ util.inherits(RedisPersistence, AbstractPersistence);
RedisPersistence.prototype._buildClient = function() {
var options = this.options;
var client = redis.createClient(
options.port,
options.host,
options.port || 6379,
options.host || "127.0.0.1",
options.redisOptions);

if (options.db) {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"jshint": "~2.5.2",
"microtime": "~1.0.1",
"mocha": "^1.21.4",
"mongo-clean": "0.0.2",
"mongo-clean": "^0.1.0",
"osenv": "^0.1.0",
"rimraf": "^2.2.8",
"sinon": "~1.7.0",
Expand All @@ -67,7 +67,7 @@
"underscore": "~1.6.0"
},
"dependencies": {
"ascoltatori": "~0.16.0",
"ascoltatori": "~0.17.0",
"async": "~0.9.0",
"brfs": "1.2.0",
"browserify": "~5.9.1",
Expand All @@ -93,8 +93,8 @@
"leveldown": "~0.10.0",
"zmq": "~2.6.0",
"amqp": "~0.2.0",
"redis": "~0.11.0",
"redis": "~0.12.1",
"hiredis": "^0.1.17",
"mongodb": "~1.4.8"
"mongodb": "~1.4.18"
}
}

0 comments on commit 7446a76

Please sign in to comment.