Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
get_external_service_ip repeatedly attempts to retrieve the specified service ip. The problem is that it uses "is None" checks to determine if an ip was retrieved. This returns "False" for empty strings, so the loop exits prematurely. Note that "is None" checks are strongly discouraged in Python. While at it, we're bumpting the timeout as well.
- Loading branch information