修复列表数据过大导致同步失败的问题

This commit is contained in:
lyswhut 2021-10-29 20:09:37 +08:00
parent b27a547fb8
commit 7dfc2e8736

View File

@ -72,7 +72,7 @@ const handleStartServer = (port = 9527) => new Promise((resolve, reject) => {
serveClient: false,
connectTimeout: 10000,
pingTimeout: 30000,
maxHttpBufferSize: 3e6,
maxHttpBufferSize: 1e9, // 1G
allowRequest: authConnection,
transports: ['websocket'],
})