Support per-task configuration
Closed this issue · 0 comments
dougmoscrop commented
const retry = dread({ attempts: 5 })
const withDefault = retry(attempt => ... );
const withConfig = retry({ attempts: 2 }, attempt => {
});
Closed this issue · 0 comments
const retry = dread({ attempts: 5 })
const withDefault = retry(attempt => ... );
const withConfig = retry({ attempts: 2 }, attempt => {
});