From 5a89fe11f1efb1136758f4dc20ae0854fcf41b59 Mon Sep 17 00:00:00 2001 From: Aaron Rosen Date: Mon, 6 May 2013 22:42:51 -0700 Subject: Remove security_group_handler Now that nova's security groups are more plugable and decoupled from the database the security_group_handler code is not very useful so this patch removes it. A little info about the security_group_handler: The security_group_handle code was added to provide a hook into nova security groups so that one could get security group add/delete/update notification and proxy them somewhere else (i.e quantum). Trying to actually using this method opens one up to several transactional issues because in the current implemenation the security group is commited to the nova database before security_group_handler is called. Implements blueprint: remove-security-group-handler Change-Id: I45047fe8dbb81555505e03309838910113080c37 --- etc/nova/nova.conf.sample | 5 ----- 1 file changed, 5 deletions(-) (limited to 'etc') diff --git a/etc/nova/nova.conf.sample b/etc/nova/nova.conf.sample index 762576e84..1897d9a65 100644 --- a/etc/nova/nova.conf.sample +++ b/etc/nova/nova.conf.sample @@ -1210,11 +1210,6 @@ # The full class name of the security API class (string value) #security_group_api=nova -# The full class name of the security group handler class -# (string value) -#security_group_handler=nova.network.sg.NullSecurityGroupHandler - - # # Options defined in bin.nova-clear-rabbit-queues # -- cgit