db: Remove unnecessary warning filters

We've resolved these along the way.

Change-Id: Ia08d46948ecd3cee301d39c86c47fab91e8b8fbb
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane 2021-11-12 11:26:54 +00:00
parent eac61c5929
commit 3955ca4862
1 changed files with 0 additions and 12 deletions

View File

@ -835,12 +835,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',
@ -853,12 +847,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',