summaryrefslogtreecommitdiffstats
path: root/openstack/common
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-11 07:43:44 +0000
committerGerrit Code Review <review@openstack.org>2013-06-11 07:43:44 +0000
commitfaddbbe318cf62791624469c4304ae4fdcc2e639 (patch)
tree57607ade5c5e3a5d4ae6634f6f4e74d814bdaefb /openstack/common
parent6afd788f3eb21e90886bfe98e2bf66f2a829217d (diff)
parent1a9a744a853e838a202647bc7c5d393331083970 (diff)
downloadoslo-faddbbe318cf62791624469c4304ae4fdcc2e639.tar.gz
oslo-faddbbe318cf62791624469c4304ae4fdcc2e639.tar.xz
oslo-faddbbe318cf62791624469c4304ae4fdcc2e639.zip
Merge "MatchMakerStub - make it work & add test"
Diffstat (limited to 'openstack/common')
-rw-r--r--openstack/common/rpc/matchmaker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/matchmaker.py b/openstack/common/rpc/matchmaker.py
index fd10f27..98a8f43 100644
--- a/openstack/common/rpc/matchmaker.py
+++ b/openstack/common/rpc/matchmaker.py
@@ -341,7 +341,7 @@ class MatchMakerStub(MatchMakerBase):
Will not work where knowledge of hosts is known (i.e. zeromq)
"""
def __init__(self):
- super(MatchMakerLocalhost, self).__init__()
+ super(MatchMakerStub, self).__init__()
self.add_binding(FanoutBinding(), StubExchange())
self.add_binding(DirectBinding(), StubExchange())