diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-02-17 17:39:32 -0800 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-02-19 10:22:14 -0800 |
commit | d61778a489f606f1bff4f01f250a0e3c4fb99e27 (patch) | |
tree | a4fe3a6a33ed9368476d452c5eab7a6e9c2238a1 /mediagoblin/tests | |
parent | 149f46f7d596fa9f61dca915845ba9318b327fdd (diff) | |
download | mediagoblin-d61778a489f606f1bff4f01f250a0e3c4fb99e27.tar.lz mediagoblin-d61778a489f606f1bff4f01f250a0e3c4fb99e27.tar.xz mediagoblin-d61778a489f606f1bff4f01f250a0e3c4fb99e27.zip |
Switch from Paste for serving to Waitress
Incredibly, it looks like none of our documentation has to change taking
this route...!
Diffstat (limited to 'mediagoblin/tests')
-rw-r--r-- | mediagoblin/tests/test_paste.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tests/test_paste.ini b/mediagoblin/tests/test_paste.ini index 8d75c3cb..1c5f09fa 100644 --- a/mediagoblin/tests/test_paste.ini +++ b/mediagoblin/tests/test_paste.ini @@ -13,6 +13,6 @@ config = %(here)s/mediagoblin.ini CELERY_ALWAYS_EAGER = true [server:main] -use = egg:gunicorn +use = egg:waitress#main host = 127.0.0.1 port = 6543 |