We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5036e6 commit 1372b46Copy full SHA for 1372b46
lambda_uploader/uploader.py
@@ -61,6 +61,11 @@ def upload_existing(self, pkg):
61
)
62
LOG.debug("AWS update_function_code response: %s"
63
% conf_update_resp)
64
+
65
+ waiter = self._lambda_client.get_waiter('function_updated')
66
+ LOG.debug("Waiting for lambda function to be updated")
67
+ waiter.wait(FunctionName=self._config.name)
68
69
LOG.debug('running update_function_configuration')
70
response = self._lambda_client.update_function_configuration(
71
FunctionName=self._config.name,
0 commit comments