Changing cron to run at every minute in 7th hour

This commit is contained in:
Collin Duncan 2023-01-21 15:14:58 +01:00
parent e8336291eb
commit 6b197addfb
No known key found for this signature in database

View file

@ -16,7 +16,7 @@ const logger = new Logger('cron', 'default', LogLevel.DEBUG)
export const startTasks = () => {
try {
const task = schedule(
'* * * * *',
'* 7 * * *',
async (timestamp) => {
asyncLocalStorage.run(
new Logger('cron', v4(), LogLevel.DEBUG),