Fix the deprecated usage of "get_transport"
As log says, 'oslo_messaging.transport.get_transport()' is deprecated. The reference link of oslo_messaging is at [1]. [1] https://review.openstack.org/#/c/454194/ Change-Id: Ib260641ee7082cb731ee143542fb2f5fde11c121
This commit is contained in:
parent
c044180f00
commit
a6008e6fb6
@ -51,7 +51,7 @@ class VitrageNotifier(CollectDPlugin):
|
|||||||
"""Set up the Vitrage API client and add the notification callback. """
|
"""Set up the Vitrage API client and add the notification callback. """
|
||||||
|
|
||||||
url = self.config['transport_url']
|
url = self.config['transport_url']
|
||||||
transport = messaging.get_transport(cfg.CONF, url)
|
transport = messaging.get_notification_transport(cfg.CONF, url)
|
||||||
self.notifier = messaging.Notifier(transport,
|
self.notifier = messaging.Notifier(transport,
|
||||||
driver='messagingv2',
|
driver='messagingv2',
|
||||||
publisher_id=COLLECTD_DATASOURCE,
|
publisher_id=COLLECTD_DATASOURCE,
|
||||||
|
@ -66,7 +66,7 @@ def main():
|
|||||||
args.sendto, args.topic, args.body)
|
args.sendto, args.topic, args.body)
|
||||||
|
|
||||||
transport_url = args.sendto
|
transport_url = args.sendto
|
||||||
transport = messaging.get_transport(cfg.CONF, transport_url)
|
transport = messaging.get_notification_transport(cfg.CONF, transport_url)
|
||||||
driver = 'messagingv2'
|
driver = 'messagingv2'
|
||||||
publisher = 'zabbix_%s' % socket.gethostname()
|
publisher = 'zabbix_%s' % socket.gethostname()
|
||||||
notifier = messaging.Notifier(transport,
|
notifier = messaging.Notifier(transport,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user