コード例 #1
0
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
コード例 #2
0
ファイル: sanity_check.py プロジェクト: zdj6373/neutron
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
コード例 #3
0
ファイル: test_sanity.py プロジェクト: hyunsun/quantum
 def test_nova_notify_runs(self):
     checks.nova_notify_supported()
コード例 #4
0
 def test_nova_notify_runs(self):
     checks.nova_notify_supported()