From ed308b99ca3c2e92ce8def4e8fe1ba1648f9a68d Mon Sep 17 00:00:00 2001 From: Jim Rollenhagen Date: Wed, 18 May 2016 15:02:05 -0400 Subject: [PATCH] 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 8eb03de1eb83a6cd2d4d41804e1b8253f94e5400. Add an upgrade note to make sure anyone using this doesn't get burned. Change-Id: I89e6b669a5ba1232bde88821f40022314ba2541b --- .../notes/rm_import_object_ns-5344a390b0af465e.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/releasenotes/notes/rm_import_object_ns-5344a390b0af465e.yaml b/releasenotes/notes/rm_import_object_ns-5344a390b0af465e.yaml index 47e54005839d..99f5af7f6b8e 100644 --- a/releasenotes/notes/rm_import_object_ns-5344a390b0af465e.yaml +++ b/releasenotes/notes/rm_import_object_ns-5344a390b0af465e.yaml @@ -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