Skip to content

Commit

Permalink
remove deprecated filesystem session
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas committed Jul 8, 2024
1 parent 6553899 commit aa9cbbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BookingSystem/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_app() -> flask.Flask:
app = flask.Flask(__name__, template_folder='templates', static_folder='static')

app.secret_key = os.getenv('SECRET_KEY')
app.config['SESSION_TYPE'] = 'filesystem'
app.config['SESSION_TYPE'] = 'cachelib'
if os.getenv('DEBUG') == 'True':
app.debug = True

Expand Down

0 comments on commit aa9cbbf

Please sign in to comment.