jets 3.1.2 → 3.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/jets/internal/app/functions/jets/base_path_mapping.rb +14 -2
- data/lib/jets/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 726e7d682375020dc0217d8680724f3c782471fc1a1c76b9af233b07cb390f76
|
4
|
+
data.tar.gz: 5bb27fa6daebd4be2f9f90406b304b9ae8565c8437f9dee5e635b2faf9fa1a08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf32cc71500b183d01beed8cbdb5b130a24e617a0fc3ecb71e3b3658dde36e1ff5251c0d669fa8741bcc95bdc66f2fe95f1ba80c5dd7896d55f87939599b93a6
|
7
|
+
data.tar.gz: 3a636a67e7dc792840b61c54e3469745fdabcdacd61fc7eca143b41a8db7d03ff5cfa381b9759a84ddf3c1e34d232b6df03837053abc64c94a55fa971e1c24a9
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
|
5
5
|
|
6
|
+
## [3.1.3] - 2022-06-29
|
7
|
+
- [#626](https://github.com/boltops-tools/jets/pull/626) aws options to better handle rate limit for base path mapping
|
8
|
+
|
6
9
|
## [3.1.2] - 2022-04-24
|
7
10
|
- [#618](https://github.com/boltops-tools/jets/pull/618) Jets Console accepts environment cli argument
|
8
11
|
- [#621](https://github.com/boltops-tools/jets/pull/621) Add SQS and SNS event helpers for jobs
|
@@ -91,10 +91,22 @@ class BasePathMapping
|
|
91
91
|
end
|
92
92
|
|
93
93
|
def apigateway
|
94
|
-
@apigateway ||= Aws::APIGateway::Client.new
|
94
|
+
@apigateway ||= Aws::APIGateway::Client.new(aws_options)
|
95
95
|
end
|
96
96
|
|
97
97
|
def cfn
|
98
|
-
@cfn ||= Aws::CloudFormation::Client.new
|
98
|
+
@cfn ||= Aws::CloudFormation::Client.new(aws_options)
|
99
|
+
end
|
100
|
+
|
101
|
+
def aws_options
|
102
|
+
options = {
|
103
|
+
retry_limit: 7, # default: 3
|
104
|
+
retry_base_delay: 0.6, # default: 0.3
|
105
|
+
}
|
106
|
+
options.merge!(
|
107
|
+
log_level: :debug,
|
108
|
+
logger: Logger.new($stdout),
|
109
|
+
) if ENV['JETS_DEBUG_AWS_SDK']
|
110
|
+
options
|
99
111
|
end
|
100
112
|
end
|
data/lib/jets/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionmailer
|