diff --git a/import-automation/executor/Dockerfile b/import-automation/executor/Dockerfile index 1bba3650c7..ecb75719a3 100644 --- a/import-automation/executor/Dockerfile +++ b/import-automation/executor/Dockerfile @@ -27,4 +27,4 @@ RUN pip install -r /workspace/requirements.txt COPY app/. /workspace/app/ -CMD gunicorn --timeout 1800 --workers 5 -b :$PORT app.main:FLASK_APP +CMD gunicorn --timeout 0 --workers 5 -b :$PORT app.main:FLASK_APP diff --git a/import-automation/executor/app.yaml b/import-automation/executor/app.yaml index 2169ce2150..fc52629491 100644 --- a/import-automation/executor/app.yaml +++ b/import-automation/executor/app.yaml @@ -1,5 +1,5 @@ runtime: python37 -entrypoint: gunicorn --timeout 1800 -b :$PORT app.main:FLASK_APP +entrypoint: gunicorn --timeout 0 -b :$PORT app.main:FLASK_APP env_variables: EXECUTOR_PRODUCTION: "True" TMPDIR: "/tmp"