Skip to content

Commit 2f39512

Browse files
committed
refactor(retry): for loop condition
1 parent f286487 commit 2f39512

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

consumer.go

+9-5
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,23 @@ func (s *Consumer) handle(m *job.Message) error {
4848

4949
// run custom process function
5050
var err error
51-
for i := 0; i < (int(m.RetryCount) + 1); i++ {
52-
if i != 0 {
53-
time.Sleep(m.RetryDelay)
54-
}
51+
shouldRetry := true
52+
for shouldRetry {
5553
if m.Task != nil {
5654
err = m.Task(ctx)
5755
} else {
5856
err = s.runFunc(ctx, m)
5957
}
60-
if err == nil {
58+
59+
// check error and retry count
60+
if err == nil || m.RetryCount == 0 {
6161
break
6262
}
63+
m.RetryCount--
64+
65+
<-time.After(m.RetryDelay)
6366
}
67+
6468
done <- err
6569
}()
6670

0 commit comments

Comments
 (0)