Merge "db: Remove unnecessary warning filters"

This commit is contained in:
Zuul 2022-01-21 13:44:48 +00:00 committed by Gerrit Code Review
commit 52b974acb7
1 changed files with 0 additions and 12 deletions

View File

@ -836,12 +836,6 @@ class WarningsFixture(fixtures.Fixture):
# ...but filter everything out until we get around to fixing them
# TODO(stephenfin): Fix all of these
warnings.filterwarnings(
'ignore',
module='nova',
message=r'The Engine.execute\(\) method is considered legacy',
category=sqla_exc.SADeprecationWarning)
warnings.filterwarnings(
'ignore',
module='nova',
@ -854,12 +848,6 @@ class WarningsFixture(fixtures.Fixture):
message=r'The Column.copy\(\) method is deprecated .*',
category=sqla_exc.SADeprecationWarning)
warnings.filterwarnings(
'ignore',
module='nova',
message=r'The .close\(\) method on a so-called .*',
category=sqla_exc.SADeprecationWarning)
warnings.filterwarnings(
'ignore',
module='nova',