Skip to content

Commit

Permalink
#534 fixed issue with wrong pub/sub var assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
itayw committed Jun 9, 2014
1 parent c8487cb commit efa614a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/webserver/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ webserver.start = function (options, callback) {
}

joola.io = require('socket.io')(self.http, { log: false });
joola.io.adapter(RedisStore({key: 'clear', pubClient: securePub, subClient: secureSub}));
joola.io.adapter(RedisStore({key: 'clear', pubClient: pub, subClient: sub}));
joola.connectCounter = 0;
joola.io.sockets.on('connection', handleSocketIOConnection);

Expand Down

0 comments on commit efa614a

Please sign in to comment.