forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0723f49
commit afcc79e
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
Misc/NEWS.d/next/Library/2024-06-22-11-59-13.gh-issue-120868.XHJ12L.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Fix a bug in :mod:`logging.config` that would eagerly create an instance of | ||
:class:`multiprocessing.Manager` when configuring a queue_listener with | ||
:class:`logging.handlers.QueueHandler`. This could cause issue in environments where | ||
``multiprocessing.Manager`` does not work. The new implementation will only check for | ||
these types when it has been verified that ``multiprocessing.Manager`` has been used to | ||
create the ``queue`` in the logging configuration in question. |