fix: increase query time for new services etc

This commit is contained in:
Andras Bacsai
2023-07-18 09:50:05 +02:00
parent 3ba44a1e23
commit 5cb0bcfd9b

View File

@@ -188,17 +188,17 @@ const host = '0.0.0.0';
// Refresh and check templates
setInterval(async () => {
await refreshTemplates();
}, 60000);
}, 60000 * 10);
setInterval(async () => {
await refreshTags();
}, 60000);
}, 60000 * 10);
setInterval(
async () => {
await migrateServicesToNewTemplate();
},
isDev ? 10000 : 60000
isDev ? 10000 : 60000 * 10
);
setInterval(async () => {