openstudio-aws 0.7.0 → 0.7.1
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/openstudio/aws/version.rb +1 -1
- data/lib/openstudio/lib/openstudio_aws_instance.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff09f7e5c305ce2de45edfe09ed056c794f7aca5
|
|
4
|
+
data.tar.gz: 593ac5d9b4936446b500d855514c94aa8810056b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edfb13cde0a865444b9ffb14c394470820a091d90d3b50933c74494adbc7719d98e0cfbd7ebd96275728c7dd25874cbed512aee2e73fcd4cf3d6db4511e63557
|
|
7
|
+
data.tar.gz: ded4cc5d82243ef5c6b80feb8121d1fd7b8729a0f6d2d02ad39ee3f66d7c655fe99dcf138416e3c73da68313eb3d64a055947f722fcd7f7ae6a41e77cd78a2d1
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
-------------
|
|
@@ -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(
|
|
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(
|
|
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.
|
|
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-
|
|
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
|