From 4f682f75eca57fe05ff1240d04959ed7c5316554 Mon Sep 17 00:00:00 2001 From: 2000-Trek Date: Fri, 9 Jun 2023 22:57:59 +0200 Subject: [PATCH] change session type to file system --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 279ef8c..2167028 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ c = conn.cursor() app = Flask(__name__) key = str(uuid.uuid4().hex) -app.config['SESSION_TYPE'] = 'redis' +app.config['SESSION_TYPE'] = 'filesystem' print(key) app.config['SECRET_KEY'] = key Session(app)