diff --git a/lib/redis.js b/lib/redis.js index 330f25b4..41759a55 100644 --- a/lib/redis.js +++ b/lib/redis.js @@ -1,4 +1,3 @@ - /*! * kue - RedisClient factory * Copyright (c) 2011 LearnBoost @@ -31,7 +30,7 @@ exports.createClient = function(){ */ exports.client = function(){ - return exports._client || (exports._client = redis.createClient()); + return exports._client || (exports._client = exports.createClient()); }; /**