From c57d920b137c4a3cb990d81d6602a43493bc7d6c Mon Sep 17 00:00:00 2001 From: Adrian Galvan Date: Tue, 10 Jan 2023 06:31:13 -0800 Subject: [PATCH] Importing custom request overrides in main.py (#2186) --- CHANGELOG.md | 1 + src/fides/api/main.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aee0743fd4..06fa12b04c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ The types of changes are: * Nav bug: clicking on Privacy Request breadcrumb takes me to Home instead of /privacy-requests [#497](https://github.com/ethyca/fides/pull/2141) * Side nav disappears when viewing request details [#2129](https://github.com/ethyca/fides/pull/2155) * Improve readability for exceptions raised from custom request overrides [#2157](https://github.com/ethyca/fides/pull/2157) +* Importing custom request overrides on server startup [#2186](https://github.com/ethyca/fides/pull/2186) ### Removed diff --git a/src/fides/api/main.py b/src/fides/api/main.py index 921126cbf5..913e975a4c 100644 --- a/src/fides/api/main.py +++ b/src/fides/api/main.py @@ -50,6 +50,9 @@ registry_file, update_saas_configs, ) + +# pylint: disable=wildcard-import, unused-wildcard-import +from fides.api.ops.service.saas_request.override_implementations import * from fides.api.ops.tasks.scheduled.scheduler import scheduler from fides.api.ops.util.cache import get_cache from fides.api.ops.util.logger import _log_exception