lib/fog/azurerm/requests/storage/create_container.rb in fog-azure-rm-0.0.4 vs lib/fog/azurerm/requests/storage/create_container.rb in fog-azure-rm-0.0.5

- old
+ new

@@ -1,18 +1,19 @@ module Fog module Storage class AzureRM - # This class provides the actual implemention for service calls. + # This class provides the actual implementation for service calls. class Real def create_container(name, options = {}) - Fog::Logger.debug "Creating container: #{name}." + msg = "Creating container: #{name}." + Fog::Logger.debug msg begin container = @blob_client.create_container(name, options) - Fog::Logger.debug "Container #{name} created successfully." - container rescue Azure::Core::Http::HTTPError => ex - raise "Exception in creating the container #{name}: #{ex.inspect}" + raise_azure_exception(ex, msg) end + Fog::Logger.debug "Container #{name} created successfully." + container end end # This class provides the mock implementation for unit tests. class Mock