Skip to content

Commit f78d0b0

Browse files
mhl-bjfreden
authored andcommitted
change payload lower bound for resumable upload test (elastic#124674)
1 parent 52c1733 commit f78d0b0

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

modules/repository-gcs/src/test/java/org/elasticsearch/repositories/gcs/GoogleCloudStorageBlobContainerStatsTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public void testResumableWrite() throws Exception {
158158

159159
final OperationPurpose purpose = randomPurpose();
160160
final String blobName = randomIdentifier();
161-
final int parts = between(1, 10);
161+
final int parts = between(2, 10);
162162
final int maxPartSize = GoogleCloudStorageBlobStore.SDK_DEFAULT_CHUNK_SIZE;
163163
final int size = (parts - 1) * maxPartSize + between(1, maxPartSize);
164164
assert size >= store.getLargeBlobThresholdInBytes();

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,9 +375,6 @@ tests:
375375
- class: org.elasticsearch.lucene.spatial.CartesianCentroidCalculatorTests
376376
method: testAddDifferentDimensionalType
377377
issue: https://github.com/elastic/elasticsearch/issues/124609
378-
- class: org.elasticsearch.repositories.gcs.GoogleCloudStorageBlobContainerStatsTests
379-
method: testResumableWrite
380-
issue: https://github.com/elastic/elasticsearch/issues/124648
381378

382379
# Examples:
383380
#

0 commit comments

Comments
 (0)