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
2015-01-02 09:42:20 -08:00

24 lines
524 B
Ruby

module Fog
module Storage
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
end # AWS
end # Fog