Merge "messaging use blocking instead of threading collector notification topic name change"

This commit is contained in:
Jenkins 2017-07-03 11:57:58 +00:00 committed by Gerrit Code Review
commit d7397d7943
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ OPTS = [
default='vitrage_notifications', default='vitrage_notifications',
help='Vitrage configured notifications topic'), help='Vitrage configured notifications topic'),
cfg.StrOpt('notification_topic_collector', cfg.StrOpt('notification_topic_collector',
default='collector_event_notification', default='vitrage_collector_notifications',
help='The topic on which event will be sent from the ' help='The topic on which event will be sent from the '
'datasources to the graph processor') 'datasources to the graph processor')
] ]

View File

@ -52,7 +52,7 @@ def get_notification_listener(transport, targets, endpoints,
allow_requeue=False): allow_requeue=False):
"""Return a configured oslo_messaging notification listener.""" """Return a configured oslo_messaging notification listener."""
return oslo_messaging.get_notification_listener( return oslo_messaging.get_notification_listener(
transport, targets, endpoints, executor='threading', transport, targets, endpoints, executor='blocking',
allow_requeue=allow_requeue) allow_requeue=allow_requeue)