Remove warning filter for old oslo.db

The warning caused by oslo.db was fixed in oslo.db 12.2.0 .

Change-Id: I36d0f084bab5d85190e239f170cceb6cc95235c8
This commit is contained in:
Takashi Kajinami
2025-05-27 21:52:55 +09:00
parent 41124271a1
commit 1cc44809a4

View File

@@ -119,15 +119,6 @@ class WarningsFixture(fixtures.Fixture):
category=sqla_exc.SAWarning,
)
# FIXME(stephenfin): We can remove this once oslo.db is fixed
# https://review.opendev.org/c/openstack/oslo.db/+/856453
warnings.filterwarnings(
'ignore',
module='ironic',
message='TypeDecorator .* will not produce a cache key',
category=sqla_exc.SAWarning,
)
self.addCleanup(self._reset_warning_filters)
def _reset_warning_filters(self):