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