From 578069ca4da84deee1028d84cc344e2e9edd515b Mon Sep 17 00:00:00 2001 From: Frank Natividad Date: Fri, 14 Feb 2020 17:07:18 -0800 Subject: [PATCH] fix: mismatch chunksize --- .../java/com/google/cloud/storage/BlobWriteChannelTest.java | 2 +- pom.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/google-cloud-storage/src/test/java/com/google/cloud/storage/BlobWriteChannelTest.java b/google-cloud-storage/src/test/java/com/google/cloud/storage/BlobWriteChannelTest.java index 22031260f..fdbb932b0 100644 --- a/google-cloud-storage/src/test/java/com/google/cloud/storage/BlobWriteChannelTest.java +++ b/google-cloud-storage/src/test/java/com/google/cloud/storage/BlobWriteChannelTest.java @@ -59,7 +59,7 @@ public class BlobWriteChannelTest { private static final BlobInfo BLOB_INFO = BlobInfo.newBuilder(BUCKET_NAME, BLOB_NAME).build(); private static final Map EMPTY_RPC_OPTIONS = ImmutableMap.of(); private static final int MIN_CHUNK_SIZE = 256 * 1024; - private static final int DEFAULT_CHUNK_SIZE = 8 * MIN_CHUNK_SIZE; + private static final int DEFAULT_CHUNK_SIZE = 60 * MIN_CHUNK_SIZE; // 15MiB private static final int CUSTOM_CHUNK_SIZE = 4 * MIN_CHUNK_SIZE; private static final Random RANDOM = new Random(); private static final String SIGNED_URL = diff --git a/pom.xml b/pom.xml index 76dd3d6c2..d46e801b9 100644 --- a/pom.xml +++ b/pom.xml @@ -63,7 +63,7 @@ UTF-8 github google-cloud-storage-parent - 1.91.3 + 1.92.5 1.8.1 4.13 1.4.1 @@ -103,7 +103,7 @@ io.grpc grpc-bom - 1.27.0 + 1.27.1 pom import