Self-review
This commit is contained in:
@@ -23,7 +23,7 @@ class Pruner {
|
|||||||
clearTimeout(this.timer);
|
clearTimeout(this.timer);
|
||||||
this.timer = null;
|
this.timer = null;
|
||||||
}
|
}
|
||||||
console.log("[VersionChecker] Stopped pruner checker");
|
console.log("[Pruner] Stopped worker");
|
||||||
}
|
}
|
||||||
|
|
||||||
async prune() {
|
async prune() {
|
||||||
|
|||||||
@@ -3,13 +3,12 @@
|
|||||||
* or configuration changes, prompting users to refresh the page.
|
* or configuration changes, prompting users to refresh the page.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const CHECK_INTERVAL = 30 * 1000; // 5 * 60 * 1000; // 5 minutes
|
const intervalMillis = 5 * 60 * 1000; // 5 minutes
|
||||||
|
|
||||||
class VersionChecker {
|
class VersionChecker {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.initialConfigHash = null;
|
this.initialConfigHash = null;
|
||||||
this.listener = null;
|
this.listener = null;
|
||||||
console.log("XXXXXXxxxx set listener null");
|
|
||||||
this.timer = null;
|
this.timer = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -21,7 +20,7 @@ class VersionChecker {
|
|||||||
// Store initial config hash from the config loaded at page load
|
// Store initial config hash from the config loaded at page load
|
||||||
this.initialConfigHash = window.config?.config_hash || "";
|
this.initialConfigHash = window.config?.config_hash || "";
|
||||||
console.log("[VersionChecker] Starting version checker");
|
console.log("[VersionChecker] Starting version checker");
|
||||||
this.timer = setInterval(() => this.checkVersion(), CHECK_INTERVAL);
|
this.timer = setInterval(() => this.checkVersion(), intervalMillis);
|
||||||
}
|
}
|
||||||
|
|
||||||
stopWorker() {
|
stopWorker() {
|
||||||
|
|||||||
Reference in New Issue
Block a user