Changelog History
Page 7
-
v0.11.1 Changes
๐ CHANGED ignore connection closed error when processing queue
-
v0.11.0 Changes
โ ADDED queue.delay works just like queue.push but delays processing of the job.
queue.delay(job, duration, callback?)
0๏ธโฃ Duration is either a number or a string. The default unit is milliseconds, but you can specify a string with units, such as "5m" or "3 hours".
Valid units are
ms
,seconds
,minutes
,hours
,days
andyears
. You can write each unit as plural ("1 hours"), singular ("1 hour") or first letter only ("1h"). -
v0.10.3 Changes
๐ FIXED generate error when one not available
-
v0.10.2 Changes
๐ FIXED error handling for sessions and reset
-
v0.10.0 Changes
Because ES7, Ironium's API changed to return promises instead of thunks.
๐ท If you're using Traceur, and you wanted to duplicate a job in queue0 to queue1 and queue2, you could do this:
queue0.each(async function(job) { await queue1.push(job); await queue2.push(job); });
-
v0.9.15 Changes
โฌ๏ธ Upgraded to Traceur 0.0.18.
-
v0.9.14 Changes
๐ FIXED: don't block $schedule queue waiting for jobs to run.
-
v0.9.13 Changes
๐ CHANGED: workers.once() fails if any scheduled job fails.
๐ FIXED: if request to queue scheduled job fails, try again.
-
v0.9.12 Changes
๐ FIXED: scheduled jobs not processed until next schedule.
-
v0.9.11 Changes
๐ FIXED: don't care for close errors while reserving jobs.