Skip to content

Commit

Permalink
Make LocalDatastoreHelper use https instead of http (#942)
Browse files Browse the repository at this point in the history
  • Loading branch information
pehrs authored and mziccard committed May 12, 2016
1 parent a8a88d1 commit 8fc4f7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public class LocalDatastoreHelper {
GCD_URL = null;
} else {
try {
GCD_URL = new URL("http://storage.googleapis.com/gcd/tools/" + GCD_FILENAME);
GCD_URL = new URL("https://storage.googleapis.com/gcd/tools/" + GCD_FILENAME);
} catch (MalformedURLException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 8fc4f7a

Please sign in to comment.