summaryrefslogtreecommitdiff
path: root/artifact_store.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-03-31 19:33:08 +0300
committerLars Wirzenius <liw@liw.fi>2018-03-31 19:33:08 +0300
commitd2bc1d1fb15015c8bef88ab392be61d92219e39d (patch)
tree311a26cf0d3e15a475fb95558fa76db6e563ebf9 /artifact_store.py
parente25c569431b7b4d161bdd0a6c4f5052af2e0e5e4 (diff)
downloadick2-d2bc1d1fb15015c8bef88ab392be61d92219e39d.tar.gz
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.
Diffstat (limited to 'artifact_store.py')
-rw-r--r--artifact_store.py2
1 files changed, 1 insertions, 1 deletions
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)