diff options
| author | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-05-05 18:09:11 -0700 |
|---|---|---|
| committer | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-05-05 18:09:11 -0700 |
| commit | a5e7d039ec9ee9528186fa011021da00d809e683 (patch) | |
| tree | 32edbfc24ad1e5baa55626aac47a699e4b47e5ec /nova/exception.py | |
| parent | 9797bda1baacf5d90d6ce678c20396bacb513e37 (diff) | |
| download | nova-a5e7d039ec9ee9528186fa011021da00d809e683.tar.gz nova-a5e7d039ec9ee9528186fa011021da00d809e683.tar.xz nova-a5e7d039ec9ee9528186fa011021da00d809e683.zip | |
terminology: no more plug-ins or queries. They are host filters and drivers.
Diffstat (limited to 'nova/exception.py')
| -rw-r--r-- | nova/exception.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nova/exception.py b/nova/exception.py index 50f50de9d..9905fb19b 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -457,8 +457,9 @@ class ZoneNotFound(NotFound): message = _("Zone %(zone_id)s could not be found.") -class SchedulerQueryDriverNotFound(NotFound): - message = _("Scheduler Query Driver %(driver_name)s could not be found.") +class SchedulerHostFilterDriverNotFound(NotFound): + message = _("Scheduler Host Filter Driver %(driver_name)s could" + " not be found.") class InstanceMetadataNotFound(NotFound): |
