Skip to content

Commit

Permalink
more retries
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdarkdragon committed Mar 16, 2021
1 parent 0b15580 commit 037a08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/testers/m3utester2.go
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ func isRetryable(err error) bool {
}
es := err.Error()
if strings.Contains(es, "connection reset by peer") || strings.Contains(es, "closed") ||
strings.Contains(es, "EOF") {
strings.Contains(es, "EOF") || strings.Contains(es, "broken") {
return true
}
return false
Expand Down

0 comments on commit 037a08d

Please sign in to comment.