Merge "Expose PublishErrorsHandler through oslo.messaging"
This commit is contained in:
commit
048c8c3e60
@ -16,9 +16,11 @@
|
||||
__all__ = ['Notifier',
|
||||
'LoggingNotificationHandler',
|
||||
'get_notification_listener',
|
||||
'NotificationResult']
|
||||
'NotificationResult',
|
||||
'PublishErrorsHandler']
|
||||
|
||||
from .notifier import *
|
||||
from .listener import *
|
||||
from .log_handler import *
|
||||
from .logger import *
|
||||
from .dispatcher import NotificationResult
|
||||
|
@ -13,11 +13,13 @@
|
||||
import logging
|
||||
|
||||
from oslo.config import cfg
|
||||
from oslo import messaging
|
||||
|
||||
|
||||
class PublishErrorsHandler(logging.Handler):
|
||||
def __init__(self, *args, **kwargs):
|
||||
# NOTE(dhellmann): Avoid a cyclical import by doing this one
|
||||
# at runtime.
|
||||
from oslo import messaging
|
||||
logging.Handler.__init__(self, *args, **kwargs)
|
||||
self._transport = messaging.get_transport(cfg.CONF)
|
||||
self._notifier = messaging.Notifier(self._transport,
|
||||
|
Loading…
x
Reference in New Issue
Block a user