Skip to content

Commit

Permalink
[#1999] Fixed retryable check
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinKyleJames authored and trel committed Dec 15, 2021
1 parent 5606446 commit 5207083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3/s3_transport/src/s3_transport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ namespace irods::experimental::io::s3_transport
} // end restore_s3_object

int S3_status_is_retryable(S3Status status) {
return ::S3_status_is_retryable(status) || libs3_types::status_error_unknown;
return ::S3_status_is_retryable(status) || libs3_types::status_error_unknown == status;
}


Expand Down

0 comments on commit 5207083

Please sign in to comment.