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 bb61f3b commit 2a4f6bbCopy full SHA for 2a4f6bb
tests/s3_data_plane_tests.c
@@ -5023,7 +5023,10 @@ static int s_test_s3_round_trip_dynamic_range_size_download_multipart(struct aws
5023
ASSERT_SUCCESS(aws_s3_tester_init(allocator, &tester));
5024
5025
size_t stored_part_size = MB_TO_BYTES(15);
5026
- struct aws_s3_tester_client_options client_options = {0};
+ /* Gives it a higher memory limit to allow parts around 15MiB */
5027
+ struct aws_s3_tester_client_options client_options = {
5028
+ .memory_limit_in_bytes = GB_TO_BYTES(2),
5029
+ };
5030
5031
struct aws_s3_client *client = NULL;
5032
ASSERT_SUCCESS(aws_s3_tester_client_new(&tester, &client_options, &client));
0 commit comments