Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-132106: Allow logging.handlers.QueueListener to be used as a context manager #132107

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

csm10495
Copy link
Contributor

@csm10495 csm10495 commented Apr 5, 2025

@@ -4347,6 +4347,18 @@ def test_queue_listener(self):
self.assertTrue(handler.matches(levelno=logging.CRITICAL, message='6'))
handler.close()

@unittest.skipUnless(hasattr(logging.handlers, 'QueueListener'),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm surprised but when is QueueListener not available?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great question. No idea. I just matched the surrounding tests 😆

csm10495 and others added 3 commits April 5, 2025 08:32
Co-authored-by: Brian Schubert <[email protected]>
Co-authored-by: Bénédikt Tran <[email protected]>
…e running (prevents a thread leak)

Update docs
Copy link
Member

@picnixz picnixz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer if we can make the multi-start check in a separate PR so that it becomes much easier to revert commits if needs arise. You can re-use the same issue however. We would then merge this PR afterwards (I'll make it so that we don't hang too much on this PR)

@csm10495
Copy link
Contributor Author

csm10495 commented Apr 6, 2025

@picnixz , I removed the listener already started stuff. I'll do a fresh PR after this one merges (since otherwise I'll merge conflict anyways with this one).. (Unless you'd like that one first instead?)

# you want to happen.
root.warning('Look out!')
listener.stop()
with QueueListener(que, handler) as listener:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of this new usage replacing the older, I would like the old usage to be kept in the documentation, with the next paragraph showing the new usage close to the Python versionchanged which clearly shows that this way of doing things is restricted to particular Python versions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants