mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
24 lines
524 B
Ruby
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
|