Merge "Fix notify method signature on LogAlarmNotifier"
This commit is contained in:
commit
f6e8b8a613
@ -26,6 +26,7 @@ LOG = log.getLogger(__name__)
|
||||
class LogAlarmNotifier(notifier.AlarmNotifier):
|
||||
"Log alarm notifier."""
|
||||
|
||||
@staticmethod
|
||||
def notify(action, alarm, state, reason):
|
||||
LOG.info("Notifying alarm %s in state %s with action %s because %s",
|
||||
alarm, state, action, reason)
|
||||
|
@ -52,7 +52,8 @@ cfg.CONF.register_opts(REST_NOTIFIER_OPTS, group="alarm")
|
||||
class RestAlarmNotifier(notifier.AlarmNotifier):
|
||||
"""Rest alarm notifier."""
|
||||
|
||||
def notify(self, action, alarm, state, reason):
|
||||
@staticmethod
|
||||
def notify(action, alarm, state, reason):
|
||||
LOG.info("Notifying alarm %s in state %s with action %s because %s",
|
||||
alarm, state, action, reason)
|
||||
body = {'state': state, 'reason': reason}
|
||||
|
Loading…
x
Reference in New Issue
Block a user