Skip to content

Commit

Permalink
# This is a combination of 8 commits.
Browse files Browse the repository at this point in the history
# This is the 1st commit message:

Spike of custom route waiter

# This is the commit message ansible#2:

Name waiter correctly

# This is the commit message ansible#3:

Switch to new waiter, and refactor waiters to be specced per service

# This is the commit message ansible#4:

PEP8

# This is the commit message ansible#5:

Require boto3/botocore at runtime instead of at import

# This is the commit message ansible#6:

PEP8

# This is the commit message ansible#7:

PEP8

# This is the commit message ansible#8:

Consolidate waiters to a single file
  • Loading branch information
ryansb authored and willthames committed Apr 4, 2018
1 parent 980a130 commit 6463571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/module_utils/aws/waiters.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,4 @@ def get_waiter(client, waiter_name):
return waiters_by_name[(client.__class__.__name__, waiter_name)](client)
except KeyError:
raise NotImplementedError("Waiter {0} could not be found for client {1}. Available waiters: {2}".format(
waiter_name, type(client), ', '.join(repr(k) for k in waiters_by_name.keys())))
waiter_name, type(client), ', '.join(repr(k) for k in ec2_waiters.waiters_by_name.keys())))

0 comments on commit 6463571

Please sign in to comment.