コード例 #1
0
def check_ovsdb_native():
    cfg.CONF.set_override('ovsdb_interface', 'native', group='OVS')
    result = checks.ovsdb_native_supported()
    if not result:
        LOG.error(_LE('Check for native OVSDB support failed.'))
    return result
コード例 #2
0
 def test_ovsdb_native_supported_runs(self):
     checks.ovsdb_native_supported()
コード例 #3
0
ファイル: sanity_check.py プロジェクト: zdj6373/neutron
def check_ovsdb_native():
    cfg.CONF.set_override('ovsdb_interface', 'native', group='OVS')
    result = checks.ovsdb_native_supported()
    if not result:
        LOG.error('Check for native OVSDB support failed.')
    return result
コード例 #4
0
ファイル: sanity_check.py プロジェクト: wmousa/neutron
def check_ovsdb_native():
    result = checks.ovsdb_native_supported()
    if not result:
        LOG.error('Check for native OVSDB support failed.')
    return result
コード例 #5
0
ファイル: test_sanity.py プロジェクト: CloudA/neutron
 def test_ovsdb_native_supported_runs(self):
     checks.ovsdb_native_supported()
コード例 #6
0
ファイル: sanity_check.py プロジェクト: openstack/neutron
def check_ovsdb_native():
    result = checks.ovsdb_native_supported()
    if not result:
        LOG.error('Check for native OVSDB support failed.')
    return result