Skip to content

Commit

Permalink
remove end parameter in redis.end (was added while testing)
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandrogr committed Mar 16, 2016
1 parent 8882fcb commit 093d24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/managers/redis.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function disconnect(cbk) {
return cbk();
}

redisClient.end(false);
redisClient.end();
isConnected = false;
return cbk(null, false);
}
Expand Down

0 comments on commit 093d24c

Please sign in to comment.