mywei1989 / egg-bus

🐣 用 egg 编写优雅的队列与事件
MIT License
51 stars 8 forks source link

fix: zero attempts #27

Closed helsonxiao closed 2 years ago

helsonxiao commented 2 years ago
Checklist
Affected core subsystem(s)
Description of change
static get attempts() {
  return 0;
}

Before: If job / listener return 0 in attempts, then it'll use global attempts which is 5 as a fallback. After: If job / listener return 0 in attempts, no retry anymore.

seekcx commented 2 years ago

Good job!

helsonxiao commented 2 years ago

Good night!