Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using storage.googleapis.com in public URL. #863

Merged
merged 1 commit into from
May 8, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gcloud/storage/blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def public_url(self):
:returns: The public URL for this blob.
"""
return '{storage_base_url}/{bucket_name}/{quoted_name}'.format(
storage_base_url='http://commondatastorage.googleapis.com',
storage_base_url='https://storage.googleapis.com',
bucket_name=self.bucket.name,
quoted_name=quote(self.name, safe=''))

Expand Down
4 changes: 2 additions & 2 deletions gcloud/storage/test_blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def test_public_url(self):
bucket = _Bucket(connection)
blob = self._makeOne(BLOB_NAME, bucket=bucket)
self.assertEqual(blob.public_url,
'http://commondatastorage.googleapis.com/name/%s' %
'https://storage.googleapis.com/name/%s' %
BLOB_NAME)

def test_public_url_w_slash_in_name(self):
Expand All @@ -153,7 +153,7 @@ def test_public_url_w_slash_in_name(self):
blob = self._makeOne(BLOB_NAME, bucket=bucket)
self.assertEqual(
blob.public_url,
'http://commondatastorage.googleapis.com/name/parent%2Fchild')
'https://storage.googleapis.com/name/parent%2Fchild')

def _basic_generate_signed_url_helper(self, credentials=None):
from gcloud._testing import _Monkey
Expand Down