]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
add missing comma to supported alias string list
authorMark McClain <mark.mcclain@dreamhost.com>
Mon, 9 Sep 2013 18:04:50 +0000 (14:04 -0400)
committerMark McClain <mark.mcclain@dreamhost.com>
Tue, 10 Sep 2013 12:38:50 +0000 (08:38 -0400)
Fixes bug: 1222949

Change-Id: Iac7f3b7605149e706e2ea8a30700dccd09f3c57e

neutron/plugins/midonet/plugin.py

index 4dd15d8ddf788ca23417007479fa8aaa8b02bd58..8cea646e4f2a7a98613fb8b4516468493270c77a 100644 (file)
@@ -189,10 +189,10 @@ class MidonetPluginException(n_exc.NeutronException):
 
 class MidonetPluginV2(db_base_plugin_v2.NeutronDbPluginV2,
                       l3_db.L3_NAT_db_mixin,
-                      agentschedulers_db.AgentSchedulerDbMixin,
+                      agentschedulers_db.DhcpAgentSchedulerDbMixin,
                       securitygroups_db.SecurityGroupDbMixin):
 
-    supported_extension_aliases = ['router', 'security-group', 'agent'
+    supported_extension_aliases = ['router', 'security-group', 'agent',
                                    'dhcp_agent_scheduler']
     __native_bulk_support = False