diff options
author | Daniel Watkins <daniel.watkins@canonical.com> | 2019-05-08 15:14:31 +0000 |
---|---|---|
committer | Server Team CI Bot <josh.powers+server-team-bot@canonical.com> | 2019-05-08 15:14:31 +0000 |
commit | 9aa97cfc73b31dc548a240e5f4bd1ef41861cc4d (patch) | |
tree | 084afa05185571aafec8d3ee22e49dfc158e8e0d /cloudinit/sources/DataSourceCloudStack.py | |
parent | ab6621d849b24bb652243e88c79f6f3b446048d7 (diff) | |
download | vyos-cloud-init-9aa97cfc73b31dc548a240e5f4bd1ef41861cc4d.tar.gz vyos-cloud-init-9aa97cfc73b31dc548a240e5f4bd1ef41861cc4d.zip |
replace remaining occurrences of LOG.warn
Diffstat (limited to 'cloudinit/sources/DataSourceCloudStack.py')
-rw-r--r-- | cloudinit/sources/DataSourceCloudStack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceCloudStack.py b/cloudinit/sources/DataSourceCloudStack.py index d4b758f2..f185dc71 100644 --- a/cloudinit/sources/DataSourceCloudStack.py +++ b/cloudinit/sources/DataSourceCloudStack.py @@ -95,7 +95,7 @@ class DataSourceCloudStack(sources.DataSource): start_time = time.time() url = uhelp.wait_for_url( urls=urls, max_wait=url_params.max_wait_seconds, - timeout=url_params.timeout_seconds, status_cb=LOG.warn) + timeout=url_params.timeout_seconds, status_cb=LOG.warning) if url: LOG.debug("Using metadata source: '%s'", url) |