From e4010e0fc9b16c4606e256b45d7e41c1be753453 Mon Sep 17 00:00:00 2001 From: Jennifer Taylor Date: Sun, 13 Aug 2023 19:49:56 +0000 Subject: [PATCH] Remove cache instantiation from proxy since it doesn't use production cache. --- bemani/wsgi/proxy.wsgi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bemani/wsgi/proxy.wsgi b/bemani/wsgi/proxy.wsgi index 1771aaa..770a6df 100644 --- a/bemani/wsgi/proxy.wsgi +++ b/bemani/wsgi/proxy.wsgi @@ -1,7 +1,6 @@ -from bemani.utils.proxy import app, load_config, instantiate_cache +from bemani.utils.proxy import app, load_config # Assumes a proxy yaml in the same directory as this WSGI # file. Also assumes that your uWSGI instance is configured with a # virtualenv that includes the installed version of this repo. load_config('proxy.yaml') -instantiate_cache(app)