azure-armrest 0.2.9 → 0.2.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f3198a7b942784b49438efa209642a348299d234
4
- data.tar.gz: e0512f7d077f2987e6ae1bc740871747bf8985fb
3
+ metadata.gz: f25780e2f0499b060cbe8353a4eeb53f99272b14
4
+ data.tar.gz: c66aa4e9aa32d682b61469019bc146814b5cafc1
5
5
  SHA512:
6
- metadata.gz: 455068f550d8ba2048788cee68ed2064d11e89b1a86c72b04cc02840b56b2b8c274cc7365d0c6c8c23943006634a7fc3bf7860288db1aabc351c01df8dff39b3
7
- data.tar.gz: 7e546e34a28f6457e2a909ad1597160fad83dd45651fa0b93bcc14fc66f7263fa65e26c410b7c6540f4cf71d56ea56f975a4db8e6e2cf2bc55ec047b72141365
6
+ metadata.gz: b4890375ae51f3cf07499f02b39c07966578a6aa7b1f6d3e5c26e97d8a6a239969032659625b9704ee6e2919961407cf0185852422f096fa497b2139d99d6199
7
+ data.tar.gz: 3938fb8f7187ee9a613feb36dfa22df415eb36300dad9e8fbc7cef441bdeb758403252e5ff3d545c6c04c4258e7eda60f326d823f85c6cc57380c82edbc684ff
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ = 0.2.10 - 15-Sep-2016
2
+ * Backported PR #213 (skip over storage accounts that don't have keys).
3
+
1
4
  = 0.2.9 - 25-Aug-2016
2
5
  * Backported PR #211 (exception class updates and specs).
3
6
 
@@ -261,7 +261,13 @@ module Azure
261
261
 
262
262
  storage_accounts.each do |lstorage_account|
263
263
  threads << Thread.new(lstorage_account) do |storage_account|
264
- key = get_account_key(storage_account)
264
+ begin
265
+ key = get_account_key(storage_account)
266
+ rescue Azure::Armrest::ApiException => err
267
+ # Most likely because the storage account isn't completely provisioned
268
+ # yet or provisioning of the account was not successful
269
+ next
270
+ end
265
271
 
266
272
  storage_account.all_blobs(key).each do |blob|
267
273
  next unless File.extname(blob.name).casecmp('.vhd') == 0
@@ -1,5 +1,5 @@
1
1
  module Azure
2
2
  module Armrest
3
- VERSION = '0.2.9'.freeze
3
+ VERSION = '0.2.10'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure-armrest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-08-25 00:00:00.000000000 Z
14
+ date: 2016-09-15 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: json