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

pull/733/head
lyswhut 2021-10-29 20:09:37 +08:00
parent b27a547fb8
commit 7dfc2e8736
1 changed files with 1 additions and 1 deletions

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'],
})