Merge "Remove warning filter for old oslo.db"

This commit is contained in:
Zuul
2025-05-28 17:33:56 +00:00
committed by Gerrit Code Review

View File

@@ -114,15 +114,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):