From 3b85a611a531598cf3b50050bc602de81d0aef80 Mon Sep 17 00:00:00 2001 From: Li Jiale Date: Sun, 11 Nov 2018 18:58:41 +0800 Subject: [PATCH] Fixed incorrect bin name the bin name should be tacker, not neutron. Change-Id: Ia97bf57cd074da56e1b0428338d4178591385111 --- tacker/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tacker/service.py b/tacker/service.py index 917067885..c8ce8bf37 100644 --- a/tacker/service.py +++ b/tacker/service.py @@ -196,7 +196,7 @@ class Service(n_rpc.Service): if not binary: binary = os.path.basename(inspect.stack()[-1][1]) if not topic: - topic = binary.rpartition('neutron-')[2] + topic = binary.rpartition('tacker-')[2] topic = topic.replace("-", "_") if not manager: manager = cfg.CONF.get('%s_manager' % topic, None)