-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Support reactor timing on more reactors. #16532
Conversation
This seems unhappy on Linux (GHA runners, anyway):
|
I was unable to fully test on Linux locally, was waiting for builds to run. |
Roger. Shout if you want a test minion to try anything out! |
🤦 I fixed the epoll issue for asyncio, but not Twisted. Anyway...I think the current version will work? |
It seems to work happily on jki.re FWIW |
With asyncio or just in general? |
Sorry, that is using asyncio |
I think this is a bit safer now and gives decent warnings like:
or
(the second one was by me introducing a bug intro the code) |
Supports timing reactor ticks on
select
andpoll
reactors, as well asepoll
(which we previously supported). Also supports reactor timings when using theasyncio
reactor (when used with an underlyingselect
,poll
,epoll
,/dev/poll
, orkqueue
event loop).