vagrant-subutai 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 96dfff84ab3bb322ef149071dd0ff43fbf0b16a2
4
- data.tar.gz: 6724ea41bcfb8f01916a5b7deb3b48c395e1bf0e
3
+ metadata.gz: e85448afa09e694451410e4f71f30e8124723d48
4
+ data.tar.gz: 8417f914901d15c0652decffdacd9985b5670429
5
5
  SHA512:
6
- metadata.gz: d1c7f508d9b766ec48507e53618f939170ee1f0723460807657bfdfbd52f339ffd76220de7449ca912dddf34e5601b82576ff905d54428392a5787124288d6f2
7
- data.tar.gz: 78acf8c97c92e3dcb7c0446329ebbc6f37752eea8c5892f06dbc1f51cbd822155ede144ff36eacc24e1b7dad070786839681d1e786121fedc726f6c92540162a
6
+ metadata.gz: 768dba9dc41d0d159c60365b5f94758ccc226a43de94d3d0f1a62b8d31165ca351fc4cc622ec20b0296440dca43dd97b9bca511a9f6615cc3d34a7c3b5dadf19
7
+ data.tar.gz: e781b7fb725b7747e37449dc0fea0363483278405b9cb3981d47815cbc1d1a950754e3f747c7d97937ca4023cc6fa034caad7c6294704ad31b3c6e25ef3079a6
@@ -9,4 +9,10 @@ FEATURES:
9
9
 
10
10
  BUG FIXES:
11
11
 
12
- - Blueprint provisioning check for ready PeerOS
12
+ - Blueprint provisioning check for ready PeerOS
13
+
14
+ ## 1.1.2 (March 15, 2018)
15
+
16
+ BUG FIXES:
17
+
18
+ - [Windows] Blueprint provisioning run first vagrant up
@@ -297,13 +297,28 @@ module VagrantSubutai
297
297
  sleep(2**attempt) #
298
298
  blueprint(url, attempt+1)
299
299
  end
300
+ rescue Errno::ECONNABORTED
301
+ if attempt < VagrantSubutai::Configs::Blueprint::ATTEMPT
302
+ sleep(2**attempt) #
303
+ blueprint(url, attempt+1)
304
+ end
300
305
  rescue OpenSSL::OpenSSLError # generic openssl error
301
306
  if attempt < VagrantSubutai::Configs::Blueprint::ATTEMPT
302
307
  sleep(2**attempt) #
303
308
  blueprint(url, attempt+1)
304
309
  end
310
+ rescue OpenSSL::SSL::SSLError
311
+ if attempt < VagrantSubutai::Configs::Blueprint::ATTEMPT
312
+ sleep(2**attempt) #
313
+ blueprint(url, attempt+1)
314
+ end
305
315
  rescue => e
306
- Put.error e
316
+ if attempt == 1 # fails first attempt then try
317
+ sleep(10)
318
+ blueprint(url, attempt+1)
319
+ else
320
+ Put.error e
321
+ end
307
322
  end
308
323
  end
309
324
 
@@ -1,3 +1,3 @@
1
1
  module VagrantSubutai
2
- VERSION = '1.1.1'
2
+ VERSION = '1.1.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-subutai
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subutai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-14 00:00:00.000000000 Z
11
+ date: 2018-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler