From 3ea675364f7d0aca1de726b507186798d708ac6e Mon Sep 17 00:00:00 2001 From: Alexey Zakharenkov <35913079+alexey-zakharenkov@users.noreply.github.com> Date: Fri, 16 Oct 2020 12:44:20 +0300 Subject: [PATCH] Fix import borders from *.osm file --- web/Dockerfile.web | 2 +- web/app/borders_api.py | 1 + web/uwsgi.ini | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/web/Dockerfile.web b/web/Dockerfile.web index 9f12b71..570b044 100644 --- a/web/Dockerfile.web +++ b/web/Dockerfile.web @@ -1,6 +1,6 @@ FROM tiangolo/uwsgi-nginx-flask:latest -RUN pip install flask_cors flask_compress psycopg2 unidecode numpy sklearn +RUN pip install lxml flask_cors flask_compress psycopg2 unidecode numpy sklearn COPY app /app COPY ./uwsgi.ini /app diff --git a/web/app/borders_api.py b/web/app/borders_api.py index 4519c43..f7f734c 100755 --- a/web/app/borders_api.py +++ b/web/app/borders_api.py @@ -1141,6 +1141,7 @@ def bbox_contains(outer, inner): @app.route('/import', methods=['POST']) def import_osm(): + data = request.data if config.READONLY: abort(405) if not LXML: diff --git a/web/uwsgi.ini b/web/uwsgi.ini index 16e11d6..e071cb0 100644 --- a/web/uwsgi.ini +++ b/web/uwsgi.ini @@ -1,5 +1,6 @@ [uwsgi] # Workaround for io.BytesIO to work with uWSGI sendfile: https://github.com/unbit/uwsgi/issues/1126 wsgi-disable-file-wrapper = True + module = borders_api callable = app