We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 935fae2 commit 2f9f17aCopy full SHA for 2f9f17a
aws_lambda/aws_lambda.py
@@ -704,6 +704,10 @@ def update_function(
704
Publish=True,
705
)
706
707
+ # Wait for function to be updated
708
+ waiter = client.get_waiter('function_updated')
709
+ waiter.wait(FunctionName=cfg.get("function_name"))
710
+
711
kwargs = {
712
"FunctionName": cfg.get("function_name"),
713
"Role": role,
setup.py
@@ -10,7 +10,7 @@
10
11
REQUIREMENTS = [
12
"boto3>=1.4.4",
13
- "click==6.6",
+ "click>=6.6",
14
"PyYAML==5.1",
15
]
16
PACKAGE_DATA = {
0 commit comments