Skip to content

Commit

Permalink
[main.py] Switch create_app() to app variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskr97 committed May 9, 2022
1 parent 163f0c1 commit f42a102
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ def load(self):
"logger_class": StubbedGunicornLogger,
"worker_class": "gevent",
}
StandaloneApplication(create_app(), options).run()
StandaloneApplication(app, options).run()

0 comments on commit f42a102

Please sign in to comment.