Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨AWS-library: Added interface to AWS SSM #6032

Merged
merged 22 commits into from
Jul 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
linter
sanderegg committed Jul 8, 2024
commit 8f99d009abf583ca470f9588b0e991d36decd118
4 changes: 3 additions & 1 deletion packages/aws-library/src/aws_library/ssm/_client.py
Original file line number Diff line number Diff line change
@@ -135,7 +135,9 @@ async def wait_for_has_instance_completed_cloud_init(
command_name="cloud-init status",
)
# wait for command to complete
waiter = self._client.get_waiter("command_executed")
waiter = self._client.get_waiter( # pylint: disable=assignment-from-no-return
"command_executed"
)
try:
await waiter.wait(
CommandId=cloud_init_status_command.command_id,