acd: remove 409 conflict from error codes we will retry

This should fix the very long pauses or getting stuck people have seen
in uploads.
This commit is contained in:
Nick Craig-Wood 2016-01-23 15:31:24 +00:00
parent eda4130703
commit 83f0d3e03d

View File

@ -126,7 +126,6 @@ func parsePath(path string) (root string) {
var retryErrorCodes = []int{
429, // Rate exceeded.
500, // Get occasional 500 Internal Server Error
409, // Conflict - happens in the unit tests a lot
503, // Service Unavailable
}