Skip to content

Commit

Permalink
Fix app running
Browse files Browse the repository at this point in the history
  • Loading branch information
malvads committed Sep 28, 2023
1 parent 962c7bf commit 0d2b317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/src/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def run_production_server(self):
'workers': gunicorn_workers
}
self.server = APIServer()
self.app = GunicornApp(server, options)
self.app = GunicornApp(self.server, options)
self.app.run()

_Outliers = Outliers()

0 comments on commit 0d2b317

Please sign in to comment.