summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorianb <devnull@localhost>2007-06-26 17:06:46 +0000
committerianb <devnull@localhost>2007-06-26 17:06:46 +0000
commit9eac33338b5120673095d1684838112ce7c8188f (patch)
tree8f1eb9cab7ea1b6e3b9a1be143d0e02bc4d21a39 /docs
parentb30591c26ba2a9953ad53fcdd654d9669d0f136f (diff)
downloadpaste-9eac33338b5120673095d1684838112ce7c8188f.tar.gz
update news for 1.4 release
Diffstat (limited to 'docs')
-rw-r--r--docs/news.txt26
1 files changed, 14 insertions, 12 deletions
diff --git a/docs/news.txt b/docs/news.txt
index b26e900..0cb94d6 100644
--- a/docs/news.txt
+++ b/docs/news.txt
@@ -3,17 +3,18 @@ News
.. contents::
-svn trunk
----------
+1.4
+---
* In ``paste.httpserver`` added lots of functionality to the
- threadpool. See ``paster points paste.server_runner http`` for the
- documentation, or the docstrings in ``paste.httpserver``. This
- catches worker threads (and WSGI apps) that take too long to
- complete their task; killing them eventually, adding more worker
- threads when the pool is exhausted and it doesn't look good that
- it'll clear soon, and optionally killing the process when there are
- too many lost/zombie threads.
+ threadpool. See `the paste.httpserver threadpool documentation
+ <paste-httpserver-threadpool.html>`_ for details. This catches
+ worker threads (and WSGI apps) that take too long to complete their
+ task; killing them eventually, adding more worker threads when the
+ pool is exhausted and it doesn't look good that it'll clear soon,
+ and optionally killing the process when there are too many
+ lost/zombie threads (you must be using some kind supervisor process
+ for this last response to make sense).
* Save host and scheme information during real HTTP proxy requests to
``paste.httpserver``, into the keys
@@ -39,10 +40,11 @@ svn trunk
* ``paste.proxy`` works with headers with continuations in the
response (i.e., a header that spans multiple lines). Also, treat a
- missing Content-Length as 0, not unlimited (may have caused freeze ups for
- some kinds of requests before).
+ missing Content-Length as 0, not unlimited (may have previously
+ caused freeze ups for some kinds of requests).
-* ``StackedObjectProxy`` supports ``__call__``.
+* ``StackedObjectProxy`` supports ``__call__`` (i.e., you can use
+ ``StackedObjectProxy`` with callable objects).
* Fixed ``ProfileMiddleware`` not calling ``close()`` on consumed
app_iters.