Skip to content

Commit

Permalink
removed timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewxhill committed Oct 20, 2011
1 parent 13ae3ea commit 84c8500
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app/lib/neemo/dirtsock.js
Expand Up @@ -33,9 +33,9 @@ exports.start = function(io, cartodb, store) {
*/
io.configure(function () {
 io.set('transports', ['xhr-polling']);
io.set('heartbeat timeout', 2);
io.set('heartbeat interval', 1);
io.set('close timeout',2);
io.set('heartbeat timeout', 4);
io.set('heartbeat interval', 3);
//io.set('close timeout',2);
io.set('log level', 1);
});
io.sockets.on('connection', function (socket) {
Expand Down
2 changes: 0 additions & 2 deletions app/public/js/Scoreboard.js
Expand Up @@ -167,8 +167,6 @@ Scoreboard.modules.socket = function(scoreboard) {
console.log(data);
$('#rank-box .footer a').unbind();
$('#rank-box .footer a').click(function(){
console.log('unbind');
console.log(that.userpage);
that.socket.emit('join', {page: that.userpage} );
})
});
Expand Down
4 changes: 2 additions & 2 deletions app/public/js/all.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 84c8500

Please sign in to comment.