This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Drop logging when asyncio waits in selector.select()
Type: behavior Stage: resolved
Components: asyncio Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, miss-islington, yselivanov
Priority: normal Keywords: patch

Created on 2018-09-30 05:04 by asvetlov, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9641 merged asvetlov, 2018-09-30 05:10
Messages (2)
msg326702 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2018-09-30 05:04
The waiting is the pretty normal case: no IO is performed and no immediate activities are scheduled.

Therefore logging such cases is just a noise.
msg326703 - (view) Author: miss-islington (miss-islington) Date: 2018-09-30 05:28
New changeset d5bd036138881bb90a803397d992870a46fbdc2d by Miss Islington (bot) (Andrew Svetlov) in branch 'master':
bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH-9641)
https://github.com/python/cpython/commit/d5bd036138881bb90a803397d992870a46fbdc2d
History
Date User Action Args
2022-04-11 14:59:06adminsetgithub: 79030
2018-10-07 21:26:37asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-09-30 05:28:44miss-islingtonsetnosy: + miss-islington
messages: + msg326703
2018-09-30 05:10:59asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request9032
2018-09-30 05:04:51asvetlovcreate