Merge "Use messaging notifications transport instead of default"

This commit is contained in:
Jenkins 2016-04-20 08:22:52 +00:00 committed by Gerrit Code Review
commit ef07ad60b4
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ def _get_notifier():
if _notifier is None:
host = CONF.default_publisher_id or socket.gethostname()
try:
transport = oslo_messaging.get_transport(CONF)
transport = oslo_messaging.get_notification_transport(CONF)
_notifier = oslo_messaging.Notifier(transport,
"identity.%s" % host)
except Exception: