Fix: clear important beats after deleteMonitor

pull/464/head
Nelson Chan 3 years ago
parent 3fb06a8ba4
commit 32c9dfbb31

@ -107,6 +107,7 @@ class Database {
R.freeze(true);
await R.autoloadModels("./server/model");
await R.exec("PRAGMA foreign_keys = ON");
// Change to WAL
await R.exec("PRAGMA journal_mode = WAL");
await R.exec("PRAGMA cache_size = -12000");

@ -637,6 +637,8 @@ exports.entryPage = "dashboard";
});
await sendMonitorList(socket);
// Clear heartbeat list on client
await sendImportantHeartbeatList(socket, monitorID, true, true);
} catch (e) {
callback({

Loading…
Cancel
Save