diff options
author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-09-23 09:22:32 -0700 |
---|---|---|
committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-10-11 14:25:04 -0700 |
commit | eb03d47fecd3bfc24243da29ee01679b334a08fe (patch) | |
tree | 23243973d2656fecadab6811e0dca6ceb246a7ae /nova/exception.py | |
parent | e164f3f703026db30937dbbddc63818cef8bd939 (diff) | |
download | nova-eb03d47fecd3bfc24243da29ee01679b334a08fe.tar.gz nova-eb03d47fecd3bfc24243da29ee01679b334a08fe.tar.xz nova-eb03d47fecd3bfc24243da29ee01679b334a08fe.zip |
Remove AoE, Clean up volume code
* Removes Ata Over Ethernet
* Adds drivers to libvirt for volumes
* Adds initialize_connection and terminate_connection to volume api
* Passes connection info back through volume api
Change-Id: I1b1626f40bebe8466ab410fb174683293c7c474f
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nova/exception.py b/nova/exception.py index e7f54071e..ffd426dea 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -394,10 +394,6 @@ class VolumeIsBusy(Error): message = _("deleting volume %(volume_name)s that has snapshot") -class ExportDeviceNotFoundForVolume(NotFound): - message = _("No export device found for volume %(volume_id)s.") - - class ISCSITargetNotFoundForVolume(NotFound): message = _("No target id found for volume %(volume_id)s.") @@ -406,6 +402,10 @@ class DiskNotFound(NotFound): message = _("No disk at %(location)s") +class VolumeDriverNotFound(NotFound): + message = _("Could not find a handler for %(driver_type)s volume.") + + class InvalidImageRef(Invalid): message = _("Invalid image href %(image_href)s.") |