Skip to content

Commit d388298

Browse files
dmichel1ajaaym
authored andcommitted
---
yaml --- r: 14941 b: refs/heads/autosynth-automl c: 44db769 h: refs/heads/master i: 14939: 9c8cc5d
1 parent 76e8cce commit d388298

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ refs/heads/spanner: b01127f885b4611bf1852abb0ce481eeb7fcc131
123123
refs/tags/v0.68.0: 9cc799fcf68c82ab431d425fefa58ef615ce8e5b
124124
refs/tags/v0.69.0: 78f67a29e8b9c46ba01de566a2eae0fd1c03edea
125125
refs/heads/autosynth-asset: cd8251de8c40e239ad24dcf9ed93ea2708a3eed5
126-
refs/heads/autosynth-automl: d6b2c21e731a4307128d79d65daa64893e421a5a
126+
refs/heads/autosynth-automl: 44db7693731df97d301be39001377ed9460b938c
127127
refs/heads/autosynth-bigquerydatatransfer: 2a9f3938237f85a8919602d74011326580ff387f
128128
refs/heads/autosynth-bigquerystorage: 99aee05df348f39d98b6fb23c292006f1d2a6c28
129129
refs/heads/autosynth-bigtable: fa0d1de9e264d7ecac8a3abc3de7a8364cfaf427

branches/autosynth-automl/google-cloud-clients/google-cloud-core/src/main/java/com/google/cloud/MetadataConfig.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
public class MetadataConfig {
3535

3636
private static final String METADATA_URL = "http://metadata.google.internal/computeMetadata/v1/";
37+
private static final int TIMEOUT_MS = 5000;
3738

3839
private MetadataConfig() {}
3940

@@ -69,6 +70,8 @@ public static String getAttribute(String attributeName) {
6970
try {
7071
URL url = new URL(METADATA_URL + attributeName);
7172
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
73+
connection.setConnectTimeout(TIMEOUT_MS);
74+
connection.setReadTimeout(TIMEOUT_MS);
7275
connection.setRequestProperty("Metadata-Flavor", "Google");
7376
InputStream input = connection.getInputStream();
7477
if (connection.getResponseCode() == 200) {

0 commit comments

Comments
 (0)