kamilsk / retry

♻️ The most advanced interruptible mechanism to perform actions repetitively until successful.
https://pkg.go.dev/github.com/kamilsk/retry/v5
MIT License
340 stars 14 forks source link

panic dead lock #123

Closed cyriltovena closed 6 years ago

cyriltovena commented 6 years ago

If action panic then the done channel is never closed and it hangs forever.

https://github.com/kamilsk/retry/blob/272c5373f544785efa4a1fd557aadfe505469695/retry.go#L42

kamilsk commented 6 years ago

@Kuqd, thank you for reporting! fixed by 21779a3

cyriltovena commented 6 years ago

Glad I could help !