increase log cleanup timeout to 60 seconds

This commit is contained in:
Ben Allfree 2024-12-04 10:34:50 +00:00
parent e8c459bed4
commit 4cf02a1705

View File

@ -36,7 +36,7 @@ const MultiChannelLimiter = () => {
channels.delete(channel)
}
}
}, 1000)
}, 1000 * 60)
return {
schedule(channel: string, fn: () => Promise<void>) {