From 0d2b317794e4cc0d17f9b35aa1a34f196d69847d Mon Sep 17 00:00:00 2001 From: Malvads Date: Thu, 28 Sep 2023 16:01:22 +0100 Subject: [PATCH] Fix app running --- resources/src/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/src/__main__.py b/resources/src/__main__.py index edf8733..a7ab5a6 100644 --- a/resources/src/__main__.py +++ b/resources/src/__main__.py @@ -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() \ No newline at end of file