Commit 068ed345 authored by Giorgenes Gelatti's avatar Giorgenes Gelatti

Rescue date error from docker api

parent 2c354c1d
......@@ -82,7 +82,9 @@ module ContainerRegistry
return unless config
strong_memoize(:created_at) do
DateTime.rfc3339(config['created']) if config['created']
DateTime.rfc3339(config['created'])
rescue ArgumentError
nil
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment