@tenonhq/sincronia-core 0.0.53 → 0.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -255,10 +255,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
255
255
|
async startUpdateSetMonitoring() {
|
|
256
256
|
// Check update sets immediately on start
|
|
257
257
|
await this.checkAllUpdateSets();
|
|
258
|
-
// Then check every
|
|
258
|
+
// Then check every 2 minutes
|
|
259
259
|
this.updateSetCheckInterval = setInterval(async () => {
|
|
260
260
|
await this.checkAllUpdateSets();
|
|
261
|
-
},
|
|
261
|
+
}, 120000); // 2 minutes = 120000ms
|
|
262
262
|
}
|
|
263
263
|
async checkAllUpdateSets() {
|
|
264
264
|
try {
|