File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/opengeodeweb_back/routes Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 2929
3030routes = flask .Blueprint ("routes" , __name__ , url_prefix = "/opengeodeweb_back" )
3131
32+
3233routes .register_blueprint (
3334 blueprint_models .routes ,
3435 url_prefix = blueprint_models .routes .url_prefix ,
@@ -426,6 +427,7 @@ def import_project() -> flask.Response:
426427
427428 data_folder_path : str = flask .current_app .config ["DATA_FOLDER_PATH" ]
428429
430+ # 423 Locked bypass : remove stopped requests
429431 if connection .scoped_session_registry :
430432 connection .scoped_session_registry .remove ()
431433 if connection .engine :
@@ -499,4 +501,4 @@ def import_project() -> flask.Response:
499501 snapshot = flask .json .loads (raw )
500502 except KeyError :
501503 snapshot = {}
502- return flask .make_response ({"snapshot" : snapshot }, 200 )
504+ return flask .make_response ({"snapshot" : snapshot }, 200 )
You can’t perform that action at this time.
0 commit comments