From e22d60560cf77bc049251f8108ce7192817e9f4b Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Wed, 30 Oct 2024 11:39:02 -0400 Subject: [PATCH] fix(api): Fix Yocto check preventing OT-2s from booting (#16637) (cherry picked from commit d140271f4e318e3f2470a4d8c446156825bc9492) --- api/src/opentrons/util/logging_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/opentrons/util/logging_config.py b/api/src/opentrons/util/logging_config.py index 0a36468f3bc..6520bb912f6 100644 --- a/api/src/opentrons/util/logging_config.py +++ b/api/src/opentrons/util/logging_config.py @@ -5,7 +5,7 @@ from opentrons.config import CONFIG, ARCHITECTURE, SystemArchitecture -if ARCHITECTURE is SystemArchitecture.BUILDROOT: +if ARCHITECTURE is SystemArchitecture.YOCTO: from opentrons_hardware.sensors import SENSOR_LOG_NAME else: # we don't use the sensor log on ot2 or host