Skip to content

Commit

Permalink
Merge pull request #419 from blackducksoftware/dev/shanty/IDETECT-421…
Browse files Browse the repository at this point in the history
…1-update-non-retryable-exit-codes

Non-retryable exit codes update (add 409)
  • Loading branch information
shantyk authored Apr 15, 2024
2 parents 14f2a9c + 157b712 commit 6456849
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import com.synopsys.integration.rest.response.Response;

public class Bdio2RetryAwareStreamUploader {
private static final List<Integer> NON_RETRYABLE_EXIT_CODES = Arrays.asList(401, 402, 403, 404);
private static final List<Integer> NON_RETRYABLE_EXIT_CODES = Arrays.asList(401, 402, 403, 404, 409);
private static final Integer TOO_MANY_REQUESTS_CODE = 429;
private final Logger logger = LoggerFactory.getLogger(this.getClass());
private final Bdio2StreamUploader bdio2StreamUploader;
Expand Down

0 comments on commit 6456849

Please sign in to comment.