Skip to content

Commit

Permalink
fix(hardware): bump minimum move timeouts (#13088)
Browse files Browse the repository at this point in the history
Closes RQA-1043
  • Loading branch information
sfoster1 authored Jul 12, 2023
1 parent 75c7c47 commit 6a92280
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -512,10 +512,10 @@ async def run(self, can_messenger: CanMessenger) -> _Completions:
log.error(f"recieved error trying to execute move group {str(error)}")

expected_time = max(
1.0, self._durations[group_id - self._start_at_index] * 1.1
3.0, self._durations[group_id - self._start_at_index] * 1.1
)
full_timeout = max(
1.0, self._durations[group_id - self._start_at_index] * 2
5.0, self._durations[group_id - self._start_at_index] * 2
)
start_time = time.time()

Expand Down

0 comments on commit 6a92280

Please sign in to comment.