diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-04-25 18:54:05 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-04-25 18:54:05 +0000 |
commit | 858d1f4ea23ad8210f818367ec2ba0fe125a8b72 (patch) | |
tree | e55d98f330b7b6e525a3936b14f9c6469e4b9921 /nova/service.py | |
parent | d50edab2bc5403f3184efe3480642fcb725cac22 (diff) | |
parent | ddb3199318bf91e76b4c4e7330956ee581c91ccc (diff) | |
download | nova-858d1f4ea23ad8210f818367ec2ba0fe125a8b72.tar.gz nova-858d1f4ea23ad8210f818367ec2ba0fe125a8b72.tar.xz nova-858d1f4ea23ad8210f818367ec2ba0fe125a8b72.zip |
Merge "Move get_backdoor_port to base rpc API."
Diffstat (limited to 'nova/service.py')
-rw-r--r-- | nova/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/service.py b/nova/service.py index 7cb0e2212..12bab14c3 100644 --- a/nova/service.py +++ b/nova/service.py @@ -446,7 +446,7 @@ class Service(object): self.manager.pre_start_hook(rpc_connection=self.conn) - rpc_dispatcher = self.manager.create_rpc_dispatcher() + rpc_dispatcher = self.manager.create_rpc_dispatcher(self.backdoor_port) # Share this same connection for these Consumers self.conn.create_consumer(self.topic, rpc_dispatcher, fanout=False) |