MovableInkAWS 1.2.0 → 1.2.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
  SHA256:
3
- metadata.gz: 7154439aecffd0332803c4aad89b681008e58a3f297116b56a4a3119d531be9b
4
- data.tar.gz: a22a422e58c5631efc1ef57d6802dbafd5f8823cb1432769313b088e767ffcd5
3
+ metadata.gz: 32f0128dbec1cd17ff123d1677590c3874e5f496eb37f43ba39f88c336a1b49b
4
+ data.tar.gz: 0d63db5f6abcfd22ad0eecd0d0b401ce7fc943c957960b4d81b2fd6e8a18f44a
5
5
  SHA512:
6
- metadata.gz: 6d04cbc7a65a5d71459009150197091bdd59137ee6da40e521d275ccfca861f8c85ecc0c3c07dac9741bae004828726341f8509dc0f4eab5ddada36e40309408
7
- data.tar.gz: 14e3171ff0d0c041cb88deabfe10a39d43826769436e94b4ae7f8adbd92811a645b7d3ec33e7d4cd1a30a40ae4888c2d9c7b7d40604b03affc3fd2c550bcd863
6
+ metadata.gz: c9477086c54eac4049df764da7f7716384dbf53df4cf7865d861ce376b55c3ca3f3867195c514385b565836b8eafe3e7c08a69ec6fc160c238892ea594c95d9a
7
+ data.tar.gz: 8ca9d5b5c39c7772cf5dfa6b9a746aaa714f9ec636a3e9c3742cd586c0e7e6aa7a35268a690d4a9364d6d56107a87f620e0bd8170271ef29a0587113a267fb51
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- MovableInkAWS (1.2.0)
4
+ MovableInkAWS (1.2.1)
5
5
  aws-sdk-athena (~> 1)
6
6
  aws-sdk-autoscaling (~> 1)
7
7
  aws-sdk-cloudwatch (~> 1)
@@ -13,9 +13,11 @@ module MovableInk
13
13
  client = eks(region: region)
14
14
 
15
15
  resp = run_with_backoff do
16
- client.describe_cluster({ name: cluster_name })
17
- rescue Aws::EKS::Errors::ResourceNotFoundException
18
- return nil
16
+ begin
17
+ client.describe_cluster({ name: cluster_name })
18
+ rescue Aws::EKS::Errors::ResourceNotFoundException
19
+ return nil
20
+ end
19
21
  end
20
22
 
21
23
  cluster_arn = resp.cluster.arn
@@ -1,5 +1,5 @@
1
1
  module MovableInk
2
2
  class AWS
3
- VERSION = '1.2.0'
3
+ VERSION = '1.2.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: MovableInkAWS
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Chesler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-11 00:00:00.000000000 Z
11
+ date: 2020-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core