1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-26 10:03:50 +03:00

Small fix

This commit is contained in:
Adolfo Gómez García 2022-12-07 21:41:02 +01:00
parent b19bf1a6e0
commit 6d9e683b20
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -157,7 +157,7 @@ async def tunnel_proc_async(
while tasks:
to_wait = tasks[:] # Get a copy of the list, and clean the original
# Wait for all tasks to finish
# Wait for tasks to finish
done, _ = await asyncio.wait(to_wait, return_when=asyncio.FIRST_COMPLETED)
# Remove finished tasks
for task in done: