lambda_deployment 0.4.0 → 0.5.0
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/lib/lambda_deployment/lambda/deploy.rb +2 -2
- data/lib/lambda_deployment/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: 0d99b5fa506833a681c1e4742fa65570f9326aaf19a0934255405fffe01177af
|
|
4
|
+
data.tar.gz: c82b496c5c79667dfefdf7ce202599ed13b46edfe4c52585f0bdb1b7986cdadd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3d9baa362c4e45acf108c14f6954630667a5bb4a234a09418f3250a57ef1c6d921f6b22c1db37d1ba74f8090311a2041e45ad50ee179cdf84885e39bb3ad598
|
|
7
|
+
data.tar.gz: 35d6a51a48b9d6b8c893778a70db14303069a2dd7d8ca080756b22c41277a98a0c21fe089da9641e5db259729fcf0728144a8c7f75bf22e6f497c8572b4664df
|
|
@@ -43,9 +43,9 @@ module LambdaDeployment
|
|
|
43
43
|
return unless @config.concurrency
|
|
44
44
|
# Allow a value of -1 to remove concurrency limit
|
|
45
45
|
if @config.concurrency == -1
|
|
46
|
-
@client.delete_function_concurrency(function_name: @config.project)
|
|
46
|
+
@client.lambda_client.delete_function_concurrency(function_name: @config.project)
|
|
47
47
|
else
|
|
48
|
-
@client.put_function_concurrency(
|
|
48
|
+
@client.lambda_client.put_function_concurrency(
|
|
49
49
|
function_name: @config.project,
|
|
50
50
|
reserved_concurrent_executions: @config.concurrency
|
|
51
51
|
)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lambda_deployment
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zendesk CloudOps
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-06
|
|
11
|
+
date: 2018-09-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-kms
|