Merge "consumes error notif. when event are disabled"

This commit is contained in:
Jenkins 2016-07-26 19:34:53 +00:00 committed by Gerrit Code Review
commit ca27ce0912

View File

@ -77,6 +77,19 @@ class NotificationBase(PluginBase):
:param message: Message to process.
"""
@staticmethod
def _consume_and_drop(notifications):
"""RPC endpoint for useless notification level"""
# NOTE(sileht): nothing special todo here, but because we listen
# for the generic notification exchange we have to consume all its
# queues
audit = _consume_and_drop
debug = _consume_and_drop
warn = _consume_and_drop
error = _consume_and_drop
critical = _consume_and_drop
def info(self, notifications):
"""RPC endpoint for notification messages at info level