Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
copy retryable value from ErrorResponse
Browse files Browse the repository at this point in the history
Signed-off-by: Aravindan Ramkumar <1028385+aravindanr@users.noreply.github.com>
  • Loading branch information
aravindanr authored and jxu-nflx committed Oct 25, 2021
1 parent 7746bb4 commit 767873a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public ConductorClientException(int status, String message) {
public ConductorClientException(int status, ErrorResponse errorResponse) {
super(errorResponse.getMessage());
this.status = status;
this.retryable = errorResponse.isRetryable();
this.message = errorResponse.getMessage();
this.code = errorResponse.getCode();
this.instance = errorResponse.getInstance();
Expand Down

0 comments on commit 767873a

Please sign in to comment.