Fix rehash command. adding security to force quite defender when a asyncio is blocking the system.

This commit is contained in:
adator
2025-11-24 01:52:25 +01:00
parent cbe527d7d9
commit d989dcd762
14 changed files with 256 additions and 117 deletions

View File

@@ -378,7 +378,7 @@ class Base:
if run_once:
for task in asyncio.all_tasks():
if task.get_name().lower() == async_name.lower():
if task.get_name().lower() == name.lower():
return None
task = asyncio.create_task(func, name=name)