Skip to content

Commit e4ba8f1

Browse files
authored
disable the threshold until we have better options (#574)
1 parent e13d044 commit e4ba8f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/s3_util.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ const uint32_t g_s3_max_num_upload_parts = 10000;
6666
const size_t g_s3_min_upload_part_size = MB_TO_BYTES(5);
6767
const size_t g_streaming_buffer_size = MB_TO_BYTES(8);
6868
const double g_default_throughput_target_gbps = 10.0;
69-
const uint64_t g_streaming_object_size_threshold = TB_TO_BYTES(2);
69+
/* TODO: disable this threshold until we have a better option for threshold */
70+
const uint64_t g_streaming_object_size_threshold = UINT64_MAX;
7071

7172
void copy_http_headers(const struct aws_http_headers *src, struct aws_http_headers *dest) {
7273
AWS_PRECONDITION(src);

0 commit comments

Comments
 (0)