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. --- artifact_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'artifact_store.py') diff --git a/artifact_store.py b/artifact_store.py index 3a19079..ea1db6a 100644 --- a/artifact_store.py +++ b/artifact_store.py @@ -120,4 +120,4 @@ app = main() if __name__ == '__main__': print('running in debug mode') - app.run(host='127.0.0.1', port=12765) + app.run(host='127.0.0.1', port=12766) -- cgit v1.2.1