diff options
author | ianb <devnull@localhost> | 2007-01-30 05:11:25 +0000 |
---|---|---|
committer | ianb <devnull@localhost> | 2007-01-30 05:11:25 +0000 |
commit | f3a41d80959005d2ad273aa5c88bad1957bb992e (patch) | |
tree | 1ff5206683898a7dbdc2a7c6309d77cc9d1496e7 /docs/test_server.ini | |
parent | ff149b45ee82a904541fe8208414f8fd56b7ecaa (diff) | |
download | paste-f3a41d80959005d2ad273aa5c88bad1957bb992e.tar.gz |
Allow killing of errant threads through the web application (also add a module to kill threads with ctypes, and a method to kill threads from the httpserver thread pool)
Diffstat (limited to 'docs/test_server.ini')
-rw-r--r-- | docs/test_server.ini | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/test_server.ini b/docs/test_server.ini index 3b76569..d9ae8b0 100644 --- a/docs/test_server.ini +++ b/docs/test_server.ini @@ -12,7 +12,11 @@ next = watch_threads_inner [app:watch_threads_inner] use = egg:Paste#urlmap /bad = bad_app -/ = egg:Paste#watch_threads +/ = watch_app + +[app:watch_app] +use = egg:Paste#watch_threads +allow_kill = true [app:bad_app] paste.app_factory = paste.debug.watchthreads:make_bad_app |