Merge "Fix case error in qpid exchange name. s/Direct/direct/"

This commit is contained in:
Jenkins 2013-08-16 20:57:00 +00:00 committed by Gerrit Code Review
commit e2ecb42786

View File

@ -285,7 +285,7 @@ class DirectPublisher(Publisher):
def __init__(self, conf, session, msg_id):
"""Init a 'direct' publisher."""
super(DirectPublisher, self).__init__(session, msg_id,
{"type": "Direct"})
{"type": "direct"})
class TopicPublisher(Publisher):