diff --git a/server/src/index.js b/server/src/index.js index 9df77e5..3f55596 100644 --- a/server/src/index.js +++ b/server/src/index.js @@ -103,7 +103,7 @@ const protocol = (process.env.PROTOCOL || 'http') === 'http' ? http : https; const server = protocol.createServer(app.callback()); const io = Io(server, { pingInterval: 5000, - pingTimeout: 3000 + pingTimeout: 5000 }); io.adapter(socketRedis(process.env.REDIS_URL));