SIENTIAPDE-1049

Handling size change
This commit is contained in:
vitor-aignosi
2025-05-20 09:34:01 -03:00
parent bb4ab7d209
commit b03fe75753

View File

@@ -145,7 +145,8 @@ class IngestorManager():
""" """
Checks the integrity of the OPC servers and updates the OPC servers if necessary. Checks the integrity of the OPC servers and updates the OPC servers if necessary.
""" """
for server, opc_manager in self.opc_managers.items(): current_managers = self.opc_managers.copy()
for server, opc_manager in current_managers.items():
opc_manager.check_cycles() opc_manager.check_cycles()
is_lost = opc_manager.check_opc_listenning() is_lost = opc_manager.check_opc_listenning()