Skip to content

Commit 57de6f9

Browse files
GavinTianYangchingor13
authored andcommitted
---
yaml --- r: 11923 b: refs/heads/autosynth-bigquerystorage c: e333f47 h: refs/heads/master i: 11921: 00259a8 11919: 3c079cc
1 parent f1d8211 commit 57de6f9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • branches/autosynth-bigquerystorage/google-cloud-clients/google-cloud-storage/src/main/java/com/google/cloud/storage/spi/v1

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ refs/tags/v0.69.0: 78f67a29e8b9c46ba01de566a2eae0fd1c03edea
125125
refs/heads/autosynth-asset: af3772eb76acbfc401f7c3f9310f09f2b0e17602
126126
refs/heads/autosynth-automl: 8c05f2af9d8bcf10536f8255093c2484bfe9243c
127127
refs/heads/autosynth-bigquerydatatransfer: 2a9f3938237f85a8919602d74011326580ff387f
128-
refs/heads/autosynth-bigquerystorage: fac25a3bb519bdd0685008108df73b5870ec7ba5
128+
refs/heads/autosynth-bigquerystorage: e333f47279194ab2505bedc49e8c6e249c0316f1
129129
refs/heads/autosynth-bigtable: 79be26443b70481fdb9a7c5159b798ae6ed0edea
130130
refs/heads/autosynth-bigtable-admin: 3cd9cc8e61a8a8e02cbdfc4a1c1adb95e4103555
131131
refs/heads/autosynth-containeranalysis: 963746c85ab8171d519059a6be1b74015e453bbf

branches/autosynth-bigquerystorage/google-cloud-clients/google-cloud-storage/src/main/java/com/google/cloud/storage/spi/v1/HttpStorageRpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ public String open(StorageObject object, Map<Option, ?> options) {
718718
String scheme = url.getScheme();
719719
String host = url.getHost();
720720
int port = url.getPort();
721-
port = port < 0 ? port : url.toURL().getDefaultPort();
721+
port = port > 0 ? port : url.toURL().getDefaultPort();
722722
String path = "/upload" + url.getRawPath();
723723
url = new GenericUrl(scheme + "://" + host + ":" + port + path);
724724
url.set("uploadType", "resumable");

0 commit comments

Comments
 (0)