diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-02-13 12:50:59 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-02-13 12:50:59 -0500 |
commit | 5d5b8f90a10549bf54cf2000f514eb9c6ea420f7 (patch) | |
tree | 364fe0e10b3ecd8a436d400f62d5901639df1055 /cloudinit/sources | |
parent | 87d0fa867f27f101e93006ba8dc8a395098e8df1 (diff) | |
download | vyos-cloud-init-5d5b8f90a10549bf54cf2000f514eb9c6ea420f7.tar.gz vyos-cloud-init-5d5b8f90a10549bf54cf2000f514eb9c6ea420f7.zip |
do not warn on waiting for url
Diffstat (limited to 'cloudinit/sources')
-rw-r--r-- | cloudinit/sources/DataSourceOpenStack.py | 3 |
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: |