Merge commit '1aea5356defc74bd99a34e1f93a8048c273b8148'

This commit is contained in:
burnettk 2022-10-12 11:08:08 -04:00
commit 4ca825cdfb
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def setup_config(app: Flask) -> None:
# unversioned (see .gitignore) config that can override everything and include secrets.
# src/spiffworkflow_backend/config/secrets.py
app.config.from_pyfile(os.path.join("config", "secrets.py"))
app.config.from_pyfile(os.path.join("config", "secrets.py"), silent=True)
thread_local_data = threading.local()
app.config["THREAD_LOCAL_DATA"] = thread_local_data