8000 gh-124653: relax (again) detection of queue API for logging handlers by picnixz · Pull Request #124897 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-124653: relax (again) detection of queue API for logging handlers #124897

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

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix test
  • Loading branch information
picnixz committed Oct 2, 2024
commit fe6c25d27298f1d7ac93830d8db9ace8a42c1712
2 changes: 1 addition & 1 deletion Lib/test/test_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -3971,7 +3971,7 @@ def test_config_queue_handler_does_not_create_multiprocessing_manager(self, mana
q4 = CustomQueueFakeProtocol()
q5 = MinimalQueueProtocol()

for qspec in (q1, q2, q3, q4):
for qspec in (q1, q2, q3, q4, q5):
self.apply_config(
{
"version": 1,
Expand Down
Loading
0