Merge "Expose PublishErrorsHandler through oslo.messaging"

This commit is contained in:
Jenkins 2014-03-06 02:06:28 +00:00 committed by Gerrit Code Review
commit 048c8c3e60
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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,