Skip to content

Commit 21a4ab4

Browse files
grrtrrDmitriyMusatkinwaahm7
authored
[s3_meta_request]: Retry on ExpiredToken (#472)
Co-authored-by: Dmitriy Musatkin <[email protected]> Co-authored-by: Waqar Ahmed Khan <[email protected]>
1 parent 58a7adc commit 21a4ab4

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

include/aws/s3/s3.h

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ enum aws_s3_errors {
4949
AWS_ERROR_S3_RECV_FILE_ALREADY_EXISTS,
5050
AWS_ERROR_S3_RECV_FILE_NOT_FOUND,
5151
AWS_ERROR_S3_REQUEST_TIMEOUT,
52+
AWS_ERROR_S3_TOKEN_EXPIRED,
5253

5354
AWS_ERROR_S3_END_RANGE = AWS_ERROR_ENUM_END_RANGE(AWS_C_S3_PACKAGE_ID)
5455
};

source/s3.c

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ static struct aws_error_info s_errors[] = {
5252
AWS_DEFINE_ERROR_INFO_S3(AWS_ERROR_S3_RECV_FILE_ALREADY_EXISTS, "File already exists, cannot create as new."),
5353
AWS_DEFINE_ERROR_INFO_S3(AWS_ERROR_S3_RECV_FILE_NOT_FOUND, "The receive file doesn't exist, cannot create as configuration required."),
5454
AWS_DEFINE_ERROR_INFO_S3(AWS_ERROR_S3_REQUEST_TIMEOUT, "RequestTimeout error received from S3."),
55+
AWS_DEFINE_ERROR_INFO_S3(AWS_ERROR_S3_TOKEN_EXPIRED, "Token expired - needs a refresh."),
5556
};
5657
/* clang-format on */
5758

source/s3_util.c

+5
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,11 @@ int aws_s3_crt_error_code_from_recoverable_server_error_code_string(struct aws_b
682682
return AWS_ERROR_S3_REQUEST_TIMEOUT;
683683
}
684684

685+
if (aws_byte_cursor_eq_c_str_ignore_case(&error_code_string, "ExpiredToken") ||
686+
aws_byte_cursor_eq_c_str_ignore_case(&error_code_string, "TokenRefreshRequired")) {
687+
return AWS_ERROR_S3_TOKEN_EXPIRED;
688+
}
689+
685690
return AWS_ERROR_UNKNOWN;
686691
}
687692

0 commit comments

Comments
 (0)