texttheater / produce

Replacement for Make geared towards processing data rather than compiling code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

asyncio: slow after keyboard interrupt

texttheater opened this issue · comments

With many targets, it takes several seconds after Ctrl+C for Produce to orderly exit. Probably because each target has its coroutine and they all need to run to completion. Can we make their completion more immediate? Or avoid them all being created up front, creating them chunk by chunk as earlier targets complete?

Abandoned asyncio again.