lib/fog/fogdocker/requests/compute/container_all.rb in fog-1.27.0 vs lib/fog/fogdocker/requests/compute/container_all.rb in fog-1.28.0

- old
+ new

@@ -7,10 +7,10 @@ # limit – Show limit last created containers, include non-running ones. # since – Show only containers created since Id, include non-running ones. # before – Show only containers created before Id, include non-running ones. # size – true or false, Show the containers sizes def container_all(filters = {}) - Docker::Container.all(filters.merge(:all => true)).map do |container| + Docker::Container.all(filters.merge(:all => true), @connection).map do |container| downcase_hash_keys(container.json) end end end class Mock