camel casing and fixes

This commit is contained in:
azivner
2018-04-04 23:04:31 -04:00
parent cf7a336ac2
commit 2cdcb3af12
10 changed files with 32 additions and 22 deletions

View File

@@ -19,8 +19,8 @@ async function runNotesWithLabel(runAttrValue) {
}
}
setTimeout(() => cls.wrap(() => runNotesWithLabel('backendStartup')), 10 * 1000);
setTimeout(cls.wrap(() => runNotesWithLabel('backendStartup')), 10 * 1000);
setInterval(() => cls.wrap(() => runNotesWithLabel('hourly')), 3600 * 1000);
setInterval(cls.wrap(() => runNotesWithLabel('hourly')), 3600 * 1000);
setInterval(() => cls.wrap(() => runNotesWithLabel('daily'), 24 * 3600 * 1000));
setInterval(cls.wrap(() => runNotesWithLabel('daily')), 24 * 3600 * 1000);