cinder/releasenotes/notes/backup-path-removal-c411bb6c0d3887f1.yaml
Sean McGinnis 86f62022ee
Drop legacy backup service support
Backup drivers were migrated from backup services around Havana with
Ic3fca567111f4bd1b221689c73cd5c3bab4a777b. This removes support for
still loading the old path names and cleans up a mapping dict that
wasn't even being used anymore.

Support for loading by class name and not module name was deprecated in
queen with Id6bee9e7d0da8ead224a04f86fe79ddfb5b286cf. This removes that
capability and requires that the backup driver class name is provided.

Change-Id: I3ada2dee1857074746b1893b82dd5f6641c6e579
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
2018-08-23 08:55:24 -05:00

9 lines
396 B
YAML

---
upgrade:
- |
The ability to specify a backup driver by module name was deprecated in
the Queens release and the ability has now been removed. Any configuration
in cinder.conf still using the module path should be updated to include the
full class name. For example, ``cinder.backup.drivers.swift`` should be
updated to ``cinder.backup.drivers.swift.SwiftBackupDriver``.