Skip to content

Commit 8fc4f7a

Browse files
pehrsmziccard
authored andcommitted
Make LocalDatastoreHelper use https instead of http (#942)
1 parent a8a88d1 commit 8fc4f7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gcloud-java-datastore/src/main/java/com/google/cloud/datastore/testing/LocalDatastoreHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public class LocalDatastoreHelper {
9292
GCD_URL = null;
9393
} else {
9494
try {
95-
GCD_URL = new URL("http://storage.googleapis.com/gcd/tools/" + GCD_FILENAME);
95+
GCD_URL = new URL("https://storage.googleapis.com/gcd/tools/" + GCD_FILENAME);
9696
} catch (MalformedURLException e) {
9797
throw new RuntimeException(e);
9898
}

0 commit comments

Comments
 (0)