Merge "Handle DBConnectionError in skip_if_timeout decorator" into stable/queens
This commit is contained in:
commit
f4a9b3d42c
@ -30,6 +30,7 @@ from neutron_lib.callbacks import manager as registry_manager
|
|||||||
from neutron_lib import fixture
|
from neutron_lib import fixture
|
||||||
from oslo_concurrency.fixture import lockutils
|
from oslo_concurrency.fixture import lockutils
|
||||||
from oslo_config import cfg
|
from oslo_config import cfg
|
||||||
|
from oslo_db import exception as db_exceptions
|
||||||
from oslo_db import options as db_options
|
from oslo_db import options as db_options
|
||||||
from oslo_messaging import conffixture as messaging_conffixture
|
from oslo_messaging import conffixture as messaging_conffixture
|
||||||
from oslo_utils import excutils
|
from oslo_utils import excutils
|
||||||
@ -123,7 +124,8 @@ def skip_if_timeout(reason):
|
|||||||
msg = ("Timeout raised for test %s, skipping it "
|
msg = ("Timeout raised for test %s, skipping it "
|
||||||
"because of: %s") % (self.id(), reason)
|
"because of: %s") % (self.id(), reason)
|
||||||
raise self.skipTest(msg)
|
raise self.skipTest(msg)
|
||||||
except sqlalchemy_exc.InterfaceError:
|
except (sqlalchemy_exc.InterfaceError,
|
||||||
|
db_exceptions.DBConnectionError):
|
||||||
# In case of db tests very often TimeoutException is reason of
|
# In case of db tests very often TimeoutException is reason of
|
||||||
# some sqlalchemy InterfaceError exception and that is final
|
# some sqlalchemy InterfaceError exception and that is final
|
||||||
# raised exception which needs to be handled
|
# raised exception which needs to be handled
|
||||||
|
Loading…
Reference in New Issue
Block a user