Skip to content
Snippets Groups Projects

Correction runners as friends

Merged David Hammer requested to merge correction-runners-as-friends into master
1 file
+ 31
31
Compare changes
  • Side-by-side
  • Inline
+ 31
31
@@ -830,47 +830,47 @@ def manager_device_overview(
mds_hash = schema_to_hash(manager_device_schema)
cds_hash = schema_to_hash(correction_device_schema)
data_throttling_children = []
config_column = [
recursive_editable(
manager_device_id,
mds_hash,
"managedKeys.constantParameters",
),
DisplayCommandModel(
keys=[f"{manager_device_id}.managedKeys.loadMostRecentConstants"],
width=10 * BASE_INC,
height=BASE_INC,
),
]
if "managedKeys.daqTrainStride" in mds_hash:
# Only add DAQ train stride if present on the schema, may be
# disabled on the manager.
data_throttling_children.insert(
0,
EditableRow(
if "managedKeys.preview" in mds_hash:
config_column.append(
recursive_editable(
manager_device_id,
mds_hash,
"managedKeys.daqTrainStride",
7,
4,
"managedKeys.preview",
max_depth=2,
),
)
return VerticalLayout(
HorizontalLayout(
ManagerDeviceStatus(manager_device_id),
VerticalLayout(
recursive_editable(
manager_device_id,
mds_hash,
"managedKeys.constantParameters",
),
DisplayCommandModel(
keys=[f"{manager_device_id}.managedKeys.loadMostRecentConstants"],
width=10 * BASE_INC,
height=BASE_INC,
),
recursive_editable(
if "managedKeys.daqTrainStride" in mds_hash:
config_column.append(
titled("Data throttling")(boxed(VerticalLayout))(
EditableRow(
manager_device_id,
mds_hash,
"managedKeys.preview",
max_depth=2,
),
titled("Data throttling")(boxed(VerticalLayout))(
children=data_throttling_children,
padding=0,
"managedKeys.daqTrainStride",
7,
4,
),
padding=0,
),
)
return VerticalLayout(
HorizontalLayout(
ManagerDeviceStatus(manager_device_id),
VerticalLayout(*config_column),
recursive_editable(
manager_device_id,
mds_hash,
Loading