change sqlite to WAL mode

This commit is contained in:
LouisLam
2021-08-17 18:18:41 +08:00
parent c9c51e47e1
commit 440c178403
2 changed files with 4 additions and 3 deletions

View File

@@ -646,9 +646,9 @@ async function afterLogin(socket, user) {
// For example, query the edit data first.
setTimeout(async () => {
for (let monitorID in monitorList) {
await sendHeartbeatList(socket, monitorID);
await sendImportantHeartbeatList(socket, monitorID);
await Monitor.sendStats(io, monitorID, user.id)
sendHeartbeatList(socket, monitorID);
sendImportantHeartbeatList(socket, monitorID);
Monitor.sendStats(io, monitorID, user.id)
}
}, 500);
}