Fixed vhost name on Events rabbitmq backend
parent
63319deb14
commit
d2ba8b4327
|
@ -40,7 +40,7 @@ def _make_rabbitmq_connection(url):
|
||||||
|
|
||||||
vhost = parse_result.path
|
vhost = parse_result.path
|
||||||
return AmqpConnection(host=host, userid=user,
|
return AmqpConnection(host=host, userid=user,
|
||||||
password=password, virtual_host=vhost)
|
password=password, virtual_host=vhost[1:])
|
||||||
|
|
||||||
|
|
||||||
class EventsPushBackend(base.BaseEventsPushBackend):
|
class EventsPushBackend(base.BaseEventsPushBackend):
|
||||||
|
|
Loading…
Reference in New Issue