1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/storage/sync_clock.rb

25 lines
524 B
Ruby
Raw Normal View History

module Fog
module Storage
2015-01-02 12:34:40 -05:00
class AWS
class Real
# Sync clock against S3 to avoid skew errors
#
def sync_clock
response = begin
get_service
rescue Excon::Errors::HTTPStatusError => error
error.response
end
Fog::Time.now = Time.parse(response.headers['Date'])
end
end # Real
class Mock # :nodoc:all
def sync_clock
true
end
end # Mock
end # Storage
2015-01-02 12:34:40 -05:00
end # AWS
end # Fog