diff options
author | Rick Harris <rconradharris@gmail.com> | 2013-06-26 18:53:01 +0000 |
---|---|---|
committer | Rick Harris <rconradharris@gmail.com> | 2013-06-27 00:30:02 +0000 |
commit | 43460d0e7e66157f0b43f5ef72dff86b3152e55f (patch) | |
tree | 1fdbc29be2f838a56f1e44a7f2cd0c2abab15d72 /nova/exception.py | |
parent | 82b805ce635ddc9ac062115956a8c40b7ad3b85b (diff) | |
download | nova-43460d0e7e66157f0b43f5ef72dff86b3152e55f.tar.gz nova-43460d0e7e66157f0b43f5ef72dff86b3152e55f.tar.xz nova-43460d0e7e66157f0b43f5ef72dff86b3152e55f.zip |
xenapi: Remove vestigial `compile_metrics` code
`compile_metrics` is no longer called as it was superceded by:
https://github.com/openstack/nova/commit/8887f10c66bca248f289db8f834ae8f36f9a03a1
Fixes bug 1194990
Change-Id: Ia651ac69fc38ed3f5cb29562556f7065caba225a
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/nova/exception.py b/nova/exception.py index e5924b831..0683e49e3 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -982,10 +982,6 @@ class InsufficientFreeMemory(NovaException): message = _("Insufficient free memory on compute node to start %(uuid)s.") -class CouldNotFetchMetrics(NovaException): - message = _("Could not fetch bandwidth/cpu/disk metrics for this host.") - - class NoValidHost(NovaException): message = _("No valid host was found. %(reason)s") |