ed308b99ca
Passing a compute_driver via nova.virt.foo worked in the past, and no
longer does after merging 8eb03de1eb
. Add
an upgrade note to make sure anyone using this doesn't get burned.
Change-Id: I89e6b669a5ba1232bde88821f40022314ba2541b
15 lines
603 B
YAML
15 lines
603 B
YAML
---
|
|
upgrade:
|
|
- Only virt drivers in the nova.virt namespace may be loaded.
|
|
This has been the case according to nova docs for several
|
|
releases, but a quirk in some library code meant that loading
|
|
things outside the namespace continued to work
|
|
unintentionally. That has been fixed, which means "compute_driver
|
|
= nova.virt.foo" is invalid (and now enforced as such), and should
|
|
be "compute_driver = foo" instead.
|
|
other:
|
|
|
|
- Virt drivers are no longer loaded with the import_object_ns
|
|
function, which means that only virt drivers in the nova.virt
|
|
namespace can be loaded.
|