Skip to content

Commit d4f7132

Browse files
GavinTianYangchingor13
authored andcommitted
---
yaml --- r: 11891 b: refs/heads/autosynth-bigquerydatatransfer c: e333f47 h: refs/heads/master i: 11889: 81f05e3 11887: b4c5a4f
1 parent b7e82e8 commit d4f7132

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • branches/autosynth-bigquerydatatransfer/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
@@ -124,7 +124,7 @@ refs/tags/v0.68.0: 9cc799fcf68c82ab431d425fefa58ef615ce8e5b
124124
refs/tags/v0.69.0: 78f67a29e8b9c46ba01de566a2eae0fd1c03edea
125125
refs/heads/autosynth-asset: af3772eb76acbfc401f7c3f9310f09f2b0e17602
126126
refs/heads/autosynth-automl: 8c05f2af9d8bcf10536f8255093c2484bfe9243c
127-
refs/heads/autosynth-bigquerydatatransfer: fac25a3bb519bdd0685008108df73b5870ec7ba5
127+
refs/heads/autosynth-bigquerydatatransfer: e333f47279194ab2505bedc49e8c6e249c0316f1
128128
refs/heads/autosynth-bigquerystorage: 167e37d9259c6460538187b96e6fb74542af84a1
129129
refs/heads/autosynth-bigtable: 79be26443b70481fdb9a7c5159b798ae6ed0edea
130130
refs/heads/autosynth-bigtable-admin: 3cd9cc8e61a8a8e02cbdfc4a1c1adb95e4103555

branches/autosynth-bigquerydatatransfer/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)