diff options
author | Robert Brewer <fumanchu@aminus.org> | 2006-05-07 06:08:24 +0000 |
---|---|---|
committer | Robert Brewer <fumanchu@aminus.org> | 2006-05-07 06:08:24 +0000 |
commit | 04770b41627d0995cb00f6b3f8450813190d1010 (patch) | |
tree | 25b3f3f794ecc2b2174a93f0e1ae1803e2105d7a /cherrypy/lib/profiler.py | |
parent | ab9fbb1bb8ab9d02cd3ceb143ff185dfc4fb4076 (diff) | |
download | cherrypy-git-04770b41627d0995cb00f6b3f8450813190d1010.tar.gz |
Moved the following config keys out of the "server." namespace (so that "server." may mean "httpserver"):
* default_content_type
* log_access_file
* log_config_options
* log_file
* log_file_not_found
* log_request_headers
* log_to_screen
* show_tracebacks
* throw_errors
Diffstat (limited to 'cherrypy/lib/profiler.py')
-rw-r--r-- | cherrypy/lib/profiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/lib/profiler.py b/cherrypy/lib/profiler.py index f6e535e7..0dd4bbfb 100644 --- a/cherrypy/lib/profiler.py +++ b/cherrypy/lib/profiler.py @@ -132,7 +132,7 @@ def serve(path=None, port=8080): cherrypy.root = Profiler(path) cherrypy.config.update({'server.socket_port': int(port), 'server.thread_pool': 10, - 'server.environment': "production", + 'environment': "production", 'session.storageType': "ram", }) cherrypy.server.start() |