You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use later.js in a microservice running on a Docker container. The code looks like that:
// Set check and update interval. We check at second 1 of every minute.constcheckInterval=later.parse.recur().on(1).second();seneca.log.info({notice: 'check and update at second 1 of every minute'});later.setInterval(()=>{ ...},checkInterval);
However after running for a long time (weeks) without any issues, later stops firing the events in the interval. It simply stops firing, even though the process/Docker continuous running w/o any problems.
Have you even experienced anything similar?
The text was updated successfully, but these errors were encountered:
We use
later.js
in a microservice running on a Docker container. The code looks like that:However after running for a long time (weeks) without any issues,
later
stops firing the events in the interval. It simply stops firing, even though the process/Docker continuous running w/o any problems.Have you even experienced anything similar?
The text was updated successfully, but these errors were encountered: