openstudio-aws 0.7.0 → 0.7.1

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: 3a8f166aa5280130c5e02e2bbca8e7916c5a4f18
4
- data.tar.gz: 44e37969328af52966ae23f81a8ee47da2ce006e
3
+ metadata.gz: ff09f7e5c305ce2de45edfe09ed056c794f7aca5
4
+ data.tar.gz: 593ac5d9b4936446b500d855514c94aa8810056b
5
5
  SHA512:
6
- metadata.gz: e3af181f0922fc772948ad6010d40390c654e1f8d04efe688802ea74fd72778f0fa987473990cc2029746446c3a8358b1d05948d50adb677f729d07fd9dc7b68
7
- data.tar.gz: 44de6b22099110cda2aced58100800adc3d9a0881cc1b4999cea68544afdefb224a19c43cc696d77903a2c0f0c56fa7b492e90e74e1040bea6e0344812374eca
6
+ metadata.gz: edfb13cde0a865444b9ffb14c394470820a091d90d3b50933c74494adbc7719d98e0cfbd7ebd96275728c7dd25874cbed512aee2e73fcd4cf3d6db4511e63557
7
+ data.tar.gz: ded4cc5d82243ef5c6b80feb8121d1fd7b8729a0f6d2d02ad39ee3f66d7c655fe99dcf138416e3c73da68313eb3d64a055947f722fcd7f7ae6a41e77cd78a2d1
@@ -1,6 +1,9 @@
1
1
  OpenStudio AWS Gem Change Log
2
2
  ==================================
3
3
 
4
+ Version 0.7.1
5
+ -------------
6
+ Double timeout threshold for EC2 instances from 10 to 20 minutes. Start_remote calls have been timing out increasingly, depending on instance time. This may be related to AWS deprecating compatible instances.
4
7
 
5
8
  Version 0.7.0
6
9
  -------------
@@ -35,6 +35,6 @@
35
35
 
36
36
  module OpenStudio
37
37
  module Aws
38
- VERSION = '0.7.0'.freeze
38
+ VERSION = '0.7.1'.freeze
39
39
  end
40
40
  end
@@ -76,7 +76,7 @@ class OpenStudioAwsInstance
76
76
  # get the instance information
77
77
  test_result = @aws.describe_volumes(volume_ids: [resp[:volume_id]])
78
78
  begin
79
- Timeout.timeout(600) do # 10 minutes
79
+ Timeout.timeout(1200) do # 20 minutes
80
80
  while test_result.nil? || test_result.instance_state.name != 'available'
81
81
  # refresh the server instance information
82
82
 
@@ -184,7 +184,7 @@ class OpenStudioAwsInstance
184
184
  # get the instance information
185
185
  test_result = @aws.describe_instance_status(instance_ids: [aws_instance.instance_id]).data.instance_statuses.first
186
186
  begin
187
- Timeout.timeout(600) do # 10 minutes
187
+ Timeout.timeout(1200) do # 20 minutes
188
188
  while test_result.nil? || test_result.instance_state.name != 'running'
189
189
  # refresh the server instance information
190
190
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openstudio-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicholas Long
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-24 00:00:00.000000000 Z
11
+ date: 2019-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core