We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e13d044 commit e4ba8f1Copy full SHA for e4ba8f1
source/s3_util.c
@@ -66,7 +66,8 @@ const uint32_t g_s3_max_num_upload_parts = 10000;
66
const size_t g_s3_min_upload_part_size = MB_TO_BYTES(5);
67
const size_t g_streaming_buffer_size = MB_TO_BYTES(8);
68
const double g_default_throughput_target_gbps = 10.0;
69
-const uint64_t g_streaming_object_size_threshold = TB_TO_BYTES(2);
+/* TODO: disable this threshold until we have a better option for threshold */
70
+const uint64_t g_streaming_object_size_threshold = UINT64_MAX;
71
72
void copy_http_headers(const struct aws_http_headers *src, struct aws_http_headers *dest) {
73
AWS_PRECONDITION(src);
0 commit comments