|
18 | 18 | same time. Specifying a log filename of ``syslog`` is still supported
|
19 | 19 | but deprecated. Patch by Jason R. Coombs.
|
20 | 20 |
|
21 |
| -- Allow > 1023 file descriptors by using poll/kqueue on platforms which |
22 |
| - support it. See https://github.com/Supervisor/supervisor/pull/129. |
23 |
| - Patch by Igor Sobreira. |
24 |
| - |
25 | 21 | - The behavior of the config file expansion ``%(here)s`` has changed. In
|
26 | 22 | previous versions, a bug caused ``%(here)s`` to always expand to the
|
27 | 23 | directory of the root config file. Now, when ``%(here)s`` is used inside
|
28 | 24 | a file included via ``[include]``, it will expand to the directory of
|
29 | 25 | that file. Thanks to Alex Eftimie and Zoltan Toth-Czifra for the patches.
|
30 | 26 |
|
31 |
| -- Files included via the ``[include]`` section are now logged at the ``INFO`` |
32 |
| - level instead of ``WARN``. Patch by Daniel Hahler. |
| 27 | +- ``supervisord`` will now use ``kqueue``, ``poll``, or ``select`` to monitor |
| 28 | + its file descriptors, in that order, depending on what is available on the |
| 29 | + system. Previous versions used ``select`` only and would crash with the error |
| 30 | + ``ValueError: filedescriptor out of range in select()`` when running a large |
| 31 | + number of subprocesses (whatever number resulted in enough file descriptors |
| 32 | + to exceed the fixed-size file descriptor table used by ``select``, which is |
| 33 | + typically 1024). Patch by Igor Sobreira. |
33 | 34 |
|
34 | 35 | - ``/etc/supervisor/supervisord.conf`` has been added to the config file search
|
35 | 36 | paths. Many versions of Supervisor packaged for Debian and Ubuntu have
|
36 | 37 | included a patch that added this path. This difference was reported in a
|
37 | 38 | number of tickets as a source of confusion and upgrade difficulties, so the
|
38 | 39 | path has been added. Patch by Kelvin Wong.
|
39 | 40 |
|
| 41 | +- Files included via the ``[include]`` section are now logged at the ``INFO`` |
| 42 | + level instead of ``WARN``. Patch by Daniel Hahler. |
| 43 | + |
40 | 44 | 3.2.3 (2016-03-19)
|
41 | 45 | ------------------
|
42 | 46 |
|
|
0 commit comments