Skip to content

Commit c586a2c

Browse files
y3rshsfoster1
andauthored
fix(hardware): bump minimum move timeout to 10s (#17845)
Cherrypick #17845 `2bbf225d6a` into a fresh branch `chore_release-8.3.2` based off `release`. Co-authored-by: Seth Foster <[email protected]>
1 parent 50ab199 commit c586a2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hardware/opentrons_hardware/hardware_control/move_group_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ async def _run_one_group(self, group_id: int, can_messenger: CanMessenger) -> No
677677
log.error(f"received error trying to execute move group: {str(error)}")
678678

679679
expected_time = max(3.0, self._durations[group_id - self._start_at_index] * 1.1)
680-
full_timeout = max(5.0, self._durations[group_id - self._start_at_index] * 2)
680+
full_timeout = max(10.0, self._durations[group_id - self._start_at_index] * 2)
681681
start_time = time.time()
682682

683683
try:

0 commit comments

Comments
 (0)