summaryrefslogtreecommitdiff
path: root/cloudinit/sources/DataSourceOpenStack.py
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2014-02-13 12:50:59 -0500
committerScott Moser <smoser@ubuntu.com>2014-02-13 12:50:59 -0500
commit5d5b8f90a10549bf54cf2000f514eb9c6ea420f7 (patch)
tree364fe0e10b3ecd8a436d400f62d5901639df1055 /cloudinit/sources/DataSourceOpenStack.py
parent87d0fa867f27f101e93006ba8dc8a395098e8df1 (diff)
downloadvyos-cloud-init-5d5b8f90a10549bf54cf2000f514eb9c6ea420f7.tar.gz
vyos-cloud-init-5d5b8f90a10549bf54cf2000f514eb9c6ea420f7.zip
do not warn on waiting for url
Diffstat (limited to 'cloudinit/sources/DataSourceOpenStack.py')
-rw-r--r--cloudinit/sources/DataSourceOpenStack.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/sources/DataSourceOpenStack.py b/cloudinit/sources/DataSourceOpenStack.py
index 7fafa3f7..5edbb448 100644
--- a/cloudinit/sources/DataSourceOpenStack.py
+++ b/cloudinit/sources/DataSourceOpenStack.py
@@ -97,8 +97,7 @@ class DataSourceOpenStack(openstack.SourceMixin, sources.DataSource):
(max_wait, timeout) = self._get_url_settings()
start_time = time.time()
avail_url = url_helper.wait_for_url(urls=md_urls, max_wait=max_wait,
- timeout=timeout,
- status_cb=LOG.warn)
+ timeout=timeout)
if avail_url:
LOG.debug("Using metadata source: '%s'", url2base[avail_url])
else: