]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
LBaaS: fix reported binary name of a loadbalancer agent
authorOleg Bondarev <obondarev@mirantis.com>
Wed, 6 Nov 2013 09:24:43 +0000 (13:24 +0400)
committerOleg Bondarev <obondarev@mirantis.com>
Mon, 18 Nov 2013 13:07:23 +0000 (17:07 +0400)
Loadbalancer agent's actual binary name differs from what it reports
to Neutron server, so need to fix:
neutron-loadbalancer-agent -> neutron-lbaas-agent

Closes-Bug: #1248222
Change-Id: Ic4e05d0258ba8eb48b96c60d69c1dbf9f27731f6

neutron/services/loadbalancer/drivers/haproxy/agent_manager.py

index e5074cf92b0a20c7bac3d622a4e12a8db5ba45c9..ed05288dc5b00acec44d70a852b9bd5e2b286685 100644 (file)
@@ -140,7 +140,7 @@ class LbaasAgentManager(periodic_task.PeriodicTasks):
             raise SystemExit(msg % conf.device_driver)
 
         self.agent_state = {
-            'binary': 'neutron-loadbalancer-agent',
+            'binary': 'neutron-lbaas-agent',
             'host': conf.host,
             'topic': plugin_driver.TOPIC_LOADBALANCER_AGENT,
             'configurations': {'device_driver': conf.device_driver,