Skip to content

Commit 567211d

Browse files
committed
printf
1 parent 39ae2ac commit 567211d

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

source/s3_auto_ranged_put.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ struct aws_future_http_message *s_s3_prepare_upload_part(struct aws_s3_request *
10171017

10181018
s_s3_prepare_upload_part_finish(part_prep, AWS_ERROR_SUCCESS);
10191019
} else {
1020-
printf("PARALLEL retry\n");
1020+
printf("PARALLEL retry 8MB read\n");
10211021
/* Not the first time preparing request (e.g. retry).
10221022
* We can skip over the async steps that read the body stream */
10231023
/* Seek back to beginning of the stream. */

source/s3_client.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1143,6 +1143,7 @@ static struct aws_s3_meta_request *s_s3_client_meta_request_factory_default(
11431143
const struct aws_s3_meta_request_options *options) {
11441144
AWS_PRECONDITION(client);
11451145
AWS_PRECONDITION(options);
1146+
printf("s_s3_client_meta_request_factory_default_elg_8MB_read\n");
11461147

11471148
const struct aws_http_headers *initial_message_headers = aws_http_message_get_headers(options->message);
11481149
AWS_ASSERT(initial_message_headers);

source/s3express_credentials_provider.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static struct aws_byte_cursor s_create_session_path_query = AWS_BYTE_CUR_INIT_FR
2626
static const size_t s_default_cache_capacity = 100;
2727

2828
/* Those number are from C++ SDK impl */
29-
static const uint64_t s_expired_threshold_secs = 5;
29+
static const uint64_t s_expired_threshold_secs = 60;
3030
static const uint64_t s_about_to_expire_threshold_secs = 60;
3131
static const uint64_t s_background_refresh_interval_secs = 60;
3232

0 commit comments

Comments
 (0)