0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00
This commit is contained in:
2025-03-28 11:15:47 +01:00
committed by wyzula-jan
parent 80d4d0def6
commit 2168a2acf0

View File

@ -418,7 +418,6 @@ class BECGuiClient(RPCBase):
def _handle_registry_update(msg: StreamMessage, parent: BECGuiClient) -> None:
# This was causing a deadlock during shutdown, not sure why.
# with self._lock:
print(msg)
self = parent
self._server_registry = msg["data"].state
self._update_dynamic_namespace(self._server_registry)
@ -443,7 +442,6 @@ class BECGuiClient(RPCBase):
def _update_dynamic_namespace(self, server_registry: dict):
"""Update the dynamic name space"""
print("Updating dynamic namespace")
for state in server_registry.values():
if state["widget_class"] in IGNORE_WIDGETS:
continue