Skip to content

Commit 5d5b8f9

Browse files
committed
do not warn on waiting for url
1 parent 87d0fa8 commit 5d5b8f9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cloudinit/sources/DataSourceOpenStack.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ def wait_for_metadata_service(self):
9797
(max_wait, timeout) = self._get_url_settings()
9898
start_time = time.time()
9999
avail_url = url_helper.wait_for_url(urls=md_urls, max_wait=max_wait,
100-
timeout=timeout,
101-
status_cb=LOG.warn)
100+
timeout=timeout)
102101
if avail_url:
103102
LOG.debug("Using metadata source: '%s'", url2base[avail_url])
104103
else:

0 commit comments

Comments
 (0)