SIENTIAPDE-1205

Remove __del__ method from Ingestor class to prevent blocking during cleanup and ensure proper async shutdown handling.
This commit is contained in:
vitor-aignosi
2025-08-27 08:49:19 -03:00
parent 501aac1868
commit c09a96d4a4

View File

@@ -83,9 +83,6 @@ class Ingestor:
if self.ingestor_manager: if self.ingestor_manager:
await self.ingestor_manager.shutdown() await self.ingestor_manager.shutdown()
def __del__(self):
asyncio.run(self.shutdown())
async def handle_acquired_tags(self, acquired): async def handle_acquired_tags(self, acquired):
""" """
Handles the acquired tags by subscribing to them if available. Handles the acquired tags by subscribing to them if available.