[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 91f9f098fcdb023dbb89d06c8833e89a11cbae4c by Vinay Sajip (Miss Islington (bot)) in branch '3.8': bpo-37470: Document more clearly the error handling for QueueHandler.emit(). (GH-14532) (GH-14533)

[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 844a9d64a4f640d1b20dc6ea54ab375680332d93 by Vinay Sajip (Miss Islington (bot)) in branch '3.7': bpo-37470: Document more clearly the error handling for QueueHandler.emit(). (GH-14532) (GH-14534)

[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +14346 pull_request: https://github.com/python/cpython/pull/14533 ___ Python tracker ___

[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +14347 pull_request: https://github.com/python/cpython/pull/14534 ___ Python tracker ___

[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 0f4e8132820947d93eccf31b9e526b81c6ffa53d by Vinay Sajip in branch 'master': bpo-37470: Document more clearly the error handling for QueueHandler.emit(). (GH-14532) https://github.com/python/cpython/commit/0f4e8132820947d93eccf31b9e526b81c6ffa53d

[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread Vinay Sajip
Change by Vinay Sajip : -- keywords: +patch pull_requests: +14345 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14532 ___ Python tracker ___

[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37470] Make it explicit what happens when using a bounded queue with QueueHandler

2019-07-01 Thread Martijn Pieters
New submission from Martijn Pieters : The documentation doesn't make it explicit what happens if you use a bounded queue together with logging.handlers.QueueHandler. If the queue is bounded in size and attempts are made to add logrecords faster than a queue listener removes them, then the