We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f6bf1 commit bea27f8Copy full SHA for bea27f8
1 file changed
packages/modules/common/configurable_device.py
@@ -120,4 +120,11 @@ def update(self):
120
for component in self.components.values():
121
if hasattr(component, "initialized") and component.initialized:
122
initialized_components.append(component)
123
+ else:
124
+ try:
125
+ component.initialize()
126
+ component.initialized = True
127
+ initialized_components.append(component)
128
+ except Exception:
129
+ log.exception(f"Initialisierung der Komponente {component} fehlgeschlagen")
130
self.__component_updater(initialized_components, self.error_handler)
0 commit comments