def check_nova_notify():
    result = checks.nova_notify_supported()
    if not result:
        LOG.error(_LE('Nova notifications are enabled, but novaclient is not '
                      'installed. Either disable nova notifications or '
                      'install python-novaclient.'))
    return result
Example #2
0
def check_nova_notify():
    result = checks.nova_notify_supported()
    if not result:
        LOG.error('Nova notifications are enabled, but novaclient is not '
                  'installed. Either disable nova notifications or '
                  'install python-novaclient.')
    return result
Example #3
0
 def test_nova_notify_runs(self):
     checks.nova_notify_supported()
Example #4
0
 def test_nova_notify_runs(self):
     checks.nova_notify_supported()