summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-08-19 16:12:20 +0000
committerLars Wirzenius <liw@liw.fi>2017-08-19 16:12:20 +0000
commitcd6576058c4f480ab22b793ded698e54a2d8dabf (patch)
treea05a5ee300276c54e6e64979d76530970d47f278
parentfefa00358eb09c567a14f3dc4709a4025b9527e2 (diff)
downloadapifw-cd6576058c4f480ab22b793ded698e54a2d8dabf.tar.gz
Fix: call gunicorn3 with the right name
-rw-r--r--apifw.yarn2
1 files changed, 1 insertions, 1 deletions
diff --git a/apifw.yarn b/apifw.yarn
index 322430d..3df47c4 100644
--- a/apifw.yarn
+++ b/apifw.yarn
@@ -65,7 +65,7 @@ It's a silly name. Please suggest something better.
# FIXME: It would be good for the test suite to pick a random free
# port. But that's not simple.
export APITEST_LOG="$DATADIR/apitest.log"
- gunicorn --daemon --bind 127.0.0.1:12765 -p "$DATADIR/pid" \
+ gunicorn3 --daemon --bind 127.0.0.1:12765 -p "$DATADIR/pid" \
--log-file "$DATADIR/log" --log-level=debug \
apitest:app
while ! curl -s http://127.0.0.1:12765/version > /dev/null