Skip to content

Commit

Permalink
fix(api): add yocto to architectures that observe the disabledLogAggr…
Browse files Browse the repository at this point in the history
…egation setting (#13132)

Closes RSS-289
Co-authored-by: Max Marrone <[email protected]>
  • Loading branch information
b-cooper authored Jul 24, 2023
1 parent 1cff090 commit ae317ed
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion api/src/opentrons/config/advanced_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,10 @@ class Setting(NamedTuple):
),
]

if ARCHITECTURE == SystemArchitecture.BUILDROOT:
if (
ARCHITECTURE == SystemArchitecture.BUILDROOT
or ARCHITECTURE == SystemArchitecture.YOCTO
):
settings.append(DisableLogIntegrationSettingDefinition())


Expand Down

0 comments on commit ae317ed

Please sign in to comment.