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 | |
parent | ab6621d849b24bb652243e88c79f6f3b446048d7 (diff) | |
download | vyos-cloud-init-9aa97cfc73b31dc548a240e5f4bd1ef41861cc4d.tar.gz vyos-cloud-init-9aa97cfc73b31dc548a240e5f4bd1ef41861cc4d.zip |
replace remaining occurrences of LOG.warn
-rw-r--r-- | cloudinit/sources/DataSourceCloudStack.py | 2 | ||||
-rw-r--r-- | cloudinit/sources/DataSourceEc2.py | 2 |
2 files changed, 2 insertions, 2 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) diff --git a/cloudinit/sources/DataSourceEc2.py b/cloudinit/sources/DataSourceEc2.py index ac28f1db..5c017bfb 100644 --- a/cloudinit/sources/DataSourceEc2.py +++ b/cloudinit/sources/DataSourceEc2.py @@ -208,7 +208,7 @@ class DataSourceEc2(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: self.metadata_address = url2base[url] |