1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[storage] fix deprecated get_url usage

This commit is contained in:
geemus 2011-08-12 11:00:47 -05:00
parent c2e29c0f9d
commit 01544701aa
2 changed files with 2 additions and 2 deletions

View file

@ -125,7 +125,7 @@ module Fog
def url(expires)
requires :key
collection.get_url(key, expires)
collection.get_https_url(key, expires)
end
private

View file

@ -125,7 +125,7 @@ module Fog
def url(expires)
requires :key
collection.get_url(key, expires)
collection.get_http_url(key, expires)
end
private