From d2bc1d1fb15015c8bef88ab392be61d92219e39d Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 31 Mar 2018 19:33:08 +0300 Subject: Fix: don't run artifact store under gunicorn Gunicorn fails when files are too big. A gigabyte is too big. We'll need to find a better solution than using the Bottle built-in debug mode HTTP server, though. --- start_artifact_store | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'start_artifact_store') diff --git a/start_artifact_store b/start_artifact_store index 3bc4a40..a920db0 100644 --- a/start_artifact_store +++ b/start_artifact_store @@ -17,8 +17,4 @@ set -eux export ARTIFACT_STORE_CONFIG=/etc/ick/artifact_store.yaml -gunicorn3 \ - --bind 127.0.0.1:12766 \ - --log-file /var/log/ickas/gunicorn3.log \ - --log-level debug \ - artifact_store:app +python3 /usr/lib/python3/dist-packages/artifact_store.py -- cgit v1.2.1