diff options
| author | Sean Dague <sdague@linux.vnet.ibm.com> | 2012-10-01 11:44:55 -0400 |
|---|---|---|
| committer | Sean Dague <sdague@linux.vnet.ibm.com> | 2012-10-01 15:14:39 -0400 |
| commit | 625996722f08b57b2926cf4d6aff5fe03abc196c (patch) | |
| tree | 247b519b74c6a026aaba46ff2ebb1b77106cadaf /nova/exception.py | |
| parent | 878dd9c0e29aeff4b485c28c63ba6c607fa7ca10 (diff) | |
remove deprecated connection_type flag
Fixes bug #1025712
connection_type was deprecated in Folsom and should now
be removed in Grizzly as early as possible to shake out
any fallout. This removes all references to it, changes
the config sample and tests appropriately.
Remove old default fixtures for flavors that specify
ephemeral disks if the connection_type flag was set to
'libvirt'
Change-Id: I8af831600a1931ae92c6d06c5105bd1bd81debe3
Diffstat (limited to 'nova/exception.py')
| -rw-r--r-- | nova/exception.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/exception.py b/nova/exception.py index 9c11dd822..b8df7ddcc 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -434,7 +434,7 @@ class NotFound(NovaException): class VirtDriverNotFound(NotFound): - message = _("Could not find driver for connection_type %(name)s") + message = _("Could not find driver for compute_driver %(name)s") class PersistentVolumeFileNotFound(NotFound): |
