Skip to content

Commit

Permalink
fix(api): FLEX fast home collision hangs because of deadlock (#14602)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau authored Mar 6, 2024
1 parent d6f22ac commit 3ac672c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/opentrons/hardware_control/ot3api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,7 @@ async def _home_axis(self, axis: Axis) -> None:
self._log.warning(
f"Stall on {axis} during fast home, encoder may have missed an overflow"
)
await self.refresh_positions()
await self.refresh_positions(acquire_lock=False)

await self._backend.home([axis], self.gantry_load)
else:
Expand Down

0 comments on commit 3ac672c

Please sign in to comment.