From 96a0a0c8958150167c375e37f8abbf0b944a4585 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Tue, 26 Jan 2010 02:12:29 +0100 Subject: [PATCH] update test.ini --- examples/pylonstest/test.ini | 8 +++++++- gunicorn/main.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/examples/pylonstest/test.ini b/examples/pylonstest/test.ini index 09c6b9d8..b891c58e 100644 --- a/examples/pylonstest/test.ini +++ b/examples/pylonstest/test.ini @@ -16,6 +16,12 @@ host = 127.0.0.1 port = 5000 [app:main] -use = config:development.ini +use = egg:pylonstest +full_stack = true +static_files = true + +cache_dir = %(here)s/data +beaker.session.key = pylonstest +beaker.session.secret = somesecret # Add additional test specific configuration options as necessary. diff --git a/gunicorn/main.py b/gunicorn/main.py index 5e89147d..7766dcab 100644 --- a/gunicorn/main.py +++ b/gunicorn/main.py @@ -80,7 +80,7 @@ def paste_server(app, global_conf=None, host="127.0.0.1", port=None, if debug: # we force to one worker in debug mode. workers = 1 - + arbiter = Arbiter(bind_addr, workers, app, debug) arbiter.run() \ No newline at end of file