diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-09-02 16:46:11 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-09-02 16:46:11 -0400 |
commit | 9cd6d8a7b3f5f02e3426e7af59b36a53039dd4fb (patch) | |
tree | eae557c5542599852a93a3ab165b842783793211 /cloudinit/cloud.py | |
parent | deb6cffaa92fb5a1244c9b28f22f85bb15d46a86 (diff) | |
parent | cba8282acc1c957698480bae2d0c2032b884d80d (diff) | |
download | vyos-cloud-init-9cd6d8a7b3f5f02e3426e7af59b36a53039dd4fb.tar.gz vyos-cloud-init-9cd6d8a7b3f5f02e3426e7af59b36a53039dd4fb.zip |
sync curtin reporting changes back to cloud-init
this pulls in the reporting framework that we'd been working on
in curtin back to cloud-init.
Diffstat (limited to 'cloudinit/cloud.py')
-rw-r--r-- | cloudinit/cloud.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/cloud.py b/cloudinit/cloud.py index edee3887..3e6be203 100644 --- a/cloudinit/cloud.py +++ b/cloudinit/cloud.py @@ -24,7 +24,7 @@ import copy import os from cloudinit import log as logging -from cloudinit import reporting +from cloudinit.reporting import events LOG = logging.getLogger(__name__) @@ -48,7 +48,7 @@ class Cloud(object): self._cfg = cfg self._runners = runners if reporter is None: - reporter = reporting.ReportEventStack( + reporter = events.ReportEventStack( name="unnamed-cloud-reporter", description="unnamed-cloud-reporter", reporting_enabled=False) |