We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f286487 commit 2f39512Copy full SHA for 2f39512
consumer.go
@@ -48,19 +48,23 @@ func (s *Consumer) handle(m *job.Message) error {
48
49
// run custom process function
50
var err error
51
- for i := 0; i < (int(m.RetryCount) + 1); i++ {
52
- if i != 0 {
53
- time.Sleep(m.RetryDelay)
54
- }
+ shouldRetry := true
+ for shouldRetry {
55
if m.Task != nil {
56
err = m.Task(ctx)
57
} else {
58
err = s.runFunc(ctx, m)
59
}
60
- if err == nil {
+
+ // check error and retry count
+ if err == nil || m.RetryCount == 0 {
61
break
62
63
+ m.RetryCount--
64
65
+ <-time.After(m.RetryDelay)
66
67
68
done <- err
69
}()
70
0 commit comments