You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File /opt/opentrons-robot-server/opentrons/execute.py:708, in _get_global_hardware_controller(robot_type)
704 if robot_type == "OT-3 Standard":
705 # Conditional import because this isn't installed on OT-2s.
706 from opentrons.hardware_control.ot3api import OT3API
--> 708 _THREAD_MANAGED_HW = ThreadManager(
709 OT3API.build_hardware_controller,
710 feature_flags=HardwareFeatureFlags.build_from_ff(),
711 )
712 else:
713 _THREAD_MANAGED_HW = ThreadManager(
714 OT2API.build_hardware_controller,
715 feature_flags=HardwareFeatureFlags.build_from_ff(),
716 )
File /opt/opentrons-robot-server/opentrons/hardware_control/thread_manager.py:289, in ThreadManager.init(self, builder, *args, **kwargs)
287 thread.start()
288 if blocking:
--> 289 object.getattribute(self, "managed_thread_ready_blocking")()
File /opt/opentrons-robot-server/opentrons/hardware_control/thread_manager.py:294, in ThreadManager.managed_thread_ready_blocking(self)
292 object.getattribute(self, "_is_running").wait()
293 if not object.getattribute(self, "managed_obj"):
--> 294 raise ThreadManagerException("Failed to create Managed Object")
ThreadManagerException: Failed to create Managed Object
Expected behavior
Device should get the protocol API without a problem
Operating system
Mac
System and robot setup or anything else?
8.0.0
Wi-Fi
Opentrons Flex
The text was updated successfully, but these errors were encountered:
Overview
Our lab need access to the opentrons' Jupyter notebook server to run some automated protocol.
However we cannot connect to the device because it is always busy. Additionally a few files like /data/robot_settings.json are missing.
Steps to reproduce
We followed the steps on https://docs.opentrons.com/v2/new_advanced_running.html?highlight=jupyter#protocol-structure to create a new cell with the following content
However it did not run and throws the following error below.
Current behavior
Expected behavior
Device should get the protocol API without a problem
Operating system
Mac
System and robot setup or anything else?
8.0.0
Wi-Fi
Opentrons Flex
The text was updated successfully, but these errors were encountered: