pkdev08
pkdev08
Tried that but it still sends after a few seconds. agenda.define(id, async () => { // Stuff to do }); await agenda.every('12 hours', id, { skipImmediate: true });
I was able to make it work, but with my application restarts, if it misses the nextRunAt, then it just never refreshes again and runs. Is there some way to...
How would I do that? What if I have a lots of jobs? There's got to be a way to init all the jobs when you restart the application
I appreciate it. I will try this and let you know how it goes.
> ``` > async function startingPreviousJobs() { > const jobs = await agenda.jobs(); > jobs.map(async (job) => { > const jobData = job.attrs; > await defineAgenda(jobData.name); > }); > };...
I understand, the library has no other way though to just pick up on previous tasks when restarting? This has to done this way?
any update on this? I'm still noticing this issue.
Yup. This is the related to the issue I created #3076 Something is blocking the images that are proxied i believe
Should be fixed with https://github.com/GitbookIO/gitbook/pull/3191
@karashiiro Hi, any idea on what the rate limit is before the 429? How many requests in a certain time? Thanks