diff --git a/nova/tests/unit/virt/libvirt/volume/test_lightos.py b/nova/tests/unit/virt/libvirt/volume/test_lightos.py index 0be0f5aefe1d..554647acf408 100644 --- a/nova/tests/unit/virt/libvirt/volume/test_lightos.py +++ b/nova/tests/unit/virt/libvirt/volume/test_lightos.py @@ -20,12 +20,9 @@ from os_brick import initiator class LibvirtLightVolumeDriverTestCase(test_volume.LibvirtVolumeBaseTestCase): - @mock.patch('queue.Queue', return_value='queue') @mock.patch('nova.utils.get_root_helper') @mock.patch('os_brick.initiator.connector.InitiatorConnector.factory') - def test_libvirt_lightos_driver(self, mock_factory, mock_helper, - queue): - self.flags(group='libvirt') + def test_libvirt_lightos_driver(self, mock_factory, mock_helper): mock_helper.return_value = 'sudo' lightos.LibvirtLightOSVolumeDriver(self.fake_host) mock_factory.assert_called_once_with( diff --git a/releasenotes/notes/lightos-fcafefdfd0939316.yaml b/releasenotes/notes/lightos-fcafefdfd0939316.yaml new file mode 100644 index 000000000000..dc931412b732 --- /dev/null +++ b/releasenotes/notes/lightos-fcafefdfd0939316.yaml @@ -0,0 +1,8 @@ +--- +features: + - | + Nova now support integration with the Lightbits Labs + (http://www.lightbitslabs.com) LightOS storage solution. + LightOS is a software-defined, cloud native, + high-performance, clustered scale-out and redundant NVMe/TCP storage + that performs like local NVMe flash. \ No newline at end of file