From f42a102e7304e8fe27f13b8ef875f7ed8301a19e Mon Sep 17 00:00:00 2001 From: James Date: Mon, 9 May 2022 04:24:00 -0400 Subject: [PATCH] [main.py] Switch create_app() to app variable --- CHANGELOG.md | 4 ++++ main.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 854a6f0..525de93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Authorized users may now upload symbols via a web interface +## [0.4.1] - 2022-05-09 +### Fixed +- Change calling of `create_app()` with previously created app variable in main.py + ## [0.4.0] - 2022-04-25 ### Fixed - Migrations now include initial database create as a migration. (Date and time estimated based on first actual migration) diff --git a/main.py b/main.py index 26220ab..b8e8870 100644 --- a/main.py +++ b/main.py @@ -140,4 +140,4 @@ def load(self): "logger_class": StubbedGunicornLogger, "worker_class": "gevent", } - StandaloneApplication(create_app(), options).run() + StandaloneApplication(app, options).run()