update changelog

This commit is contained in:
benoitc 2014-06-28 17:59:34 +02:00
parent 46afb979e2
commit 403acab3b1
2 changed files with 26 additions and 1 deletions

View File

@ -12,6 +12,8 @@ Core
- fix #785: handle binary type address given to a client socket address - fix #785: handle binary type address given to a client socket address
- fix graceful shutdown. make sure QUIT and TERMS signals are switched - fix graceful shutdown. make sure QUIT and TERMS signals are switched
everywhere. everywhere.
- support loading config from module (#799)
- fix check for file-like objects (#805)
Tornado worker Tornado worker
++++++++++++++ ++++++++++++++
@ -21,7 +23,28 @@ Tornado worker
<https://github.com/benoitc/gunicorn/commit/c4873681299212d6082cd9902740eef18c2f14f1>`_. The discussion is <https://github.com/benoitc/gunicorn/commit/c4873681299212d6082cd9902740eef18c2f14f1>`_. The discussion is
available on `#633 <https://github.com/benoitc/gunicorn/pull/633>`_. available on `#633 <https://github.com/benoitc/gunicorn/pull/633>`_.
AioHttp worker
++++++++++++++
- fix: fetch all body in input. fix #803
- fix: don't install the worker if python < 3.3
Logging
+++++++
- add statsd logging handler fix #748
Extra
+++++
- fix RuntimeError in gunicorn.reloader (#807)
Documentation
+++++++++++++
- update faq: put a not on how `watch logs in the console
<http://docs.gunicorn.org/en/latest/faq.html#why-i-don-t-see-any-logs-in-the-console>`_
since many people asked for it.
19.0 / 2014-06-12 19.0 / 2014-06-12
----------------- -----------------

View File

@ -8,6 +8,7 @@ from gunicorn.http.unreader import SocketUnreader, IterUnreader
class Parser(object): class Parser(object):
def __init__(self, mesg_class, cfg, source): def __init__(self, mesg_class, cfg, source):
self.mesg_class = mesg_class self.mesg_class = mesg_class
self.cfg = cfg self.cfg = cfg
@ -45,5 +46,6 @@ class Parser(object):
class RequestParser(Parser): class RequestParser(Parser):
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
super(RequestParser, self).__init__(Request, *args, **kwargs) super(RequestParser, self).__init__(Request, *args, **kwargs)