mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
bump to 0.9.0, prepare release.
This commit is contained in:
parent
7a4aa51703
commit
954fcae167
@ -49,6 +49,26 @@
|
|||||||
|
|
||||||
<div class="document" id="news">
|
<div class="document" id="news">
|
||||||
<h1 class="title">News</h1>
|
<h1 class="title">News</h1>
|
||||||
|
<div class="section" id="dev-2010-05-17">
|
||||||
|
<h1>0.9.0-dev / 2010-05-17</h1>
|
||||||
|
<div class="system-message">
|
||||||
|
<p class="system-message-title">System Message: WARNING/2 (<tt class="docutils"><string></tt>, line 5)</p>
|
||||||
|
<p>Title underline too short.</p>
|
||||||
|
<pre class="literal-block">
|
||||||
|
0.9.0-dev / 2010-05-17
|
||||||
|
------------------
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<ul class="simple">
|
||||||
|
<li>Added <em>preload</em> setting. Load application code before the worker processes
|
||||||
|
are forked.</li>
|
||||||
|
<li>Refactored Config</li>
|
||||||
|
<li>Fix pidfile</li>
|
||||||
|
<li>Fix QUIT/HUP in async workers</li>
|
||||||
|
<li>Fix reexec</li>
|
||||||
|
<li>Documentation improvments</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<div class="section" id="id1">
|
<div class="section" id="id1">
|
||||||
<h1>0.8.1 / 2010-04-29</h1>
|
<h1>0.8.1 / 2010-04-29</h1>
|
||||||
<ul class="simple">
|
<ul class="simple">
|
||||||
|
|||||||
@ -39,6 +39,8 @@ Example gunicorn.conf.py
|
|||||||
|
|
||||||
before_exec=lambda server: server.log.info("Forked child, reexecuting")
|
before_exec=lambda server: server.log.info("Forked child, reexecuting")
|
||||||
|
|
||||||
|
when_ready=lambda server: server.log.info("Gunicorn started.")
|
||||||
|
|
||||||
Parameter Descriptions
|
Parameter Descriptions
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
@ -108,6 +110,9 @@ umask:
|
|||||||
user:
|
user:
|
||||||
The user as which worker processes will by launched.
|
The user as which worker processes will by launched.
|
||||||
|
|
||||||
|
when_ready(server):
|
||||||
|
This is called by the arbiter just after Gunicorn started.
|
||||||
|
|
||||||
worker_connections:
|
worker_connections:
|
||||||
Number of simultaneous connections a worker can handle when used with
|
Number of simultaneous connections a worker can handle when used with
|
||||||
Eventlet or Gevent arbiter. The default is 1000.
|
Eventlet or Gevent arbiter. The default is 1000.
|
||||||
|
|||||||
@ -4,16 +4,17 @@ title: News
|
|||||||
News
|
News
|
||||||
====
|
====
|
||||||
|
|
||||||
0.9.0-dev / 2010-05-17
|
0.9.0 2010-05-22
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
- Added *when_ready* hook. Called just after the server is started
|
||||||
- Added *preload* setting. Load application code before the worker processes
|
- Added *preload* setting. Load application code before the worker processes
|
||||||
are forked.
|
are forked.
|
||||||
- Refactored Config
|
- Refactored Config
|
||||||
- Fix pidfile
|
- Fix pidfile
|
||||||
- Fix QUIT/HUP in async workers
|
- Fix QUIT/HUP in async workers
|
||||||
- Fix reexec
|
- Fix reexec
|
||||||
- Documentation improvments
|
- Documentation improvements
|
||||||
|
|
||||||
0.8.1 / 2010-04-29
|
0.8.1 / 2010-04-29
|
||||||
------------------
|
------------------
|
||||||
|
|||||||
@ -3,5 +3,5 @@
|
|||||||
# This file is part of gunicorn released under the MIT license.
|
# This file is part of gunicorn released under the MIT license.
|
||||||
# See the NOTICE for more information.
|
# See the NOTICE for more information.
|
||||||
|
|
||||||
version_info = (0, 9, '0-dev')
|
version_info = (0, 9, 0)
|
||||||
__version__ = ".".join(map(str, version_info))
|
__version__ = ".".join(map(str, version_info))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user