Revert "socketio: increase socketio limit to 1MiB"

This reverts commit 55c96e5577.
This commit is contained in:
John McLear 2021-02-14 16:53:48 +00:00
parent 648e7c7342
commit 615e47114b
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ exports.expressCreateServer = (hookName, args, cb) => {
* https://github.com/socketio/socket.io/issues/2276#issuecomment-147184662 (not totally true, actually, see above)
*/
cookie: false,
maxHttpBufferSize: 1 << 20, // 1MiB
maxHttpBufferSize: 10E3,
});
io.on('connect', (socket) => {