Skip to content

Commit

Permalink
Update Azure::Storage::Blob::BlobService Interface
Browse files Browse the repository at this point in the history
Update Azure::Storage::Blob::BlobService Interface from here https://azure.github.io/azure-storage-ruby/Azure/Storage/Blob/BlobService.html fog#389
  • Loading branch information
aheumaier authored Aug 8, 2018
1 parent 42ca817 commit 5e49f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fog/azurerm/requests/storage/list_blobs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def list_blobs(container_name, options = {})
Fog::Logger.debug msg
temp = @blob_client.list_blobs(container_name, options)
# Workaround for the issue https://github.com/Azure/azure-storage-ruby/issues/37
raise temp unless temp.instance_of?(Azure::Service::EnumerationResults)
raise temp unless temp.instance_of?(Azure::Storage::Common::Service::EnumerationResults)

blobs += temp unless temp.empty?
break if temp.continuation_token.nil? || temp.continuation_token.empty?
Expand Down

0 comments on commit 5e49f3b

Please sign in to comment.