Skip to content
Snippets Groups Projects
Unverified Commit d0ff779d authored by wenzhuo zhan's avatar wenzhuo zhan Committed by GitHub
Browse files

issue 341_Update __init__.py (#344)

### What problem does this PR solve?

Issue link:#341

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
parent 2950eb69
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
# #
import logging import logging
import sys import sys
import os
from importlib.util import module_from_spec, spec_from_file_location from importlib.util import module_from_spec, spec_from_file_location
from pathlib import Path from pathlib import Path
from flask import Blueprint, Flask, request from flask import Blueprint, Flask, request
...@@ -53,8 +54,8 @@ app.errorhandler(Exception)(server_error_response) ...@@ -53,8 +54,8 @@ app.errorhandler(Exception)(server_error_response)
#app.config["LOGIN_DISABLED"] = True #app.config["LOGIN_DISABLED"] = True
app.config["SESSION_PERMANENT"] = False app.config["SESSION_PERMANENT"] = False
app.config["SESSION_TYPE"] = "filesystem" app.config["SESSION_TYPE"] = "filesystem"
app.config['MAX_CONTENT_LENGTH'] = 128 * 1024 * 1024 #app.config['MAX_CONTENT_LENGTH'] = 128 * 1024 * 1024
app.config['MAX_CONTENT_LENGTH'] = os.environ.get("MAX_CONTENT_LENGTH", 128 * 1024 * 1024)
Session(app) Session(app)
login_manager = LoginManager() login_manager = LoginManager()
login_manager.init_app(app) login_manager.init_app(app)
...@@ -116,4 +117,4 @@ def load_user(web_request): ...@@ -116,4 +117,4 @@ def load_user(web_request):
@app.teardown_request @app.teardown_request
def _db_close(exc): def _db_close(exc):
close_connection() close_connection()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment