Augment release note for import_object_ns removal

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
This commit is contained in:
Jim Rollenhagen 2016-05-18 15:02:05 -04:00 committed by Dan Smith
parent 7dc5d7222c
commit ed308b99ca
1 changed files with 8 additions and 0 deletions

View File

@ -1,4 +1,12 @@
---
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