From eac7888e722759b7c9a0d7841dfe8b26dfd77897 Mon Sep 17 00:00:00 2001 From: Salvatore Orlando Date: Mon, 7 Nov 2011 12:01:11 +0000 Subject: Blueprint xenapi-security-groups Provides two drivers for implementing security groups in xenapi: 1) domU driver that enforces security groups on the Openstack virtual appliance (use advised with FlatDHCP in HA mode) 2) dom0 driver that enforces security groups where VIFs are attached Both drivers translate security groups into iptables rules. Existing libvirt code has been refactored to reduce the amount of duplicated code to a minimum Now Addressing reviewers's comments on style. Fixing issue spotted with snapshots Change-Id: Ifa16a8f2508a709be03241bac0f942fe1a51d1e8 --- nova/compute/manager.py | 1 - 1 file changed, 1 deletion(-) (limited to 'nova/compute') diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 108debb93..d8559df1c 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -165,7 +165,6 @@ class ComputeManager(manager.SchedulerDependentManager): # and re-document the module docstring if not compute_driver: compute_driver = FLAGS.compute_driver - try: self.driver = utils.check_isinstance( utils.import_object(compute_driver), -- cgit