mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Check if exception has a #response method before calling it, otherwise call #message
This commit is contained in:
parent
c5a71c48c1
commit
845ae3f511
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ module Fog
|
||||||
response = begin
|
response = begin
|
||||||
get_service
|
get_service
|
||||||
rescue => error
|
rescue => error
|
||||||
error.response
|
error.respond_to(:response) ? error.response : error.message
|
||||||
end
|
end
|
||||||
Fog::Time.now = Time.parse(response.headers['Date'])
|
Fog::Time.now = Time.parse(response.headers['Date'])
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue