Skip to content

Commit

Permalink
Merge pull request #245 from DiamondLightSource/remove_i03_xbpm_timeout
Browse files Browse the repository at this point in the history
Apply hotfixes from previous release
  • Loading branch information
olliesilvester authored Nov 28, 2023
2 parents 0d960bb + 3b1557e commit 93145a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/dodal/devices/oav/oav_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Any

OAV_CONFIG_JSON = (
"/dls_sw/i03/software/gda/configurations/i03-config/etc/OAVCentring.json"
"/dls_sw/i03/software/daq_configuration/json/OAVCentring_hyperion.json"
)


Expand Down
4 changes: 1 addition & 3 deletions src/dodal/devices/xbpm_feedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ class XBPMFeedback(Device):

def trigger(self) -> StatusBase:
return SubscriptionStatus(
self.pos_stable,
lambda *, old_value, value, **kwargs: value == 1,
timeout=60,
self.pos_stable, lambda *, old_value, value, **kwargs: value == 1
)


Expand Down

0 comments on commit 93145a9

Please sign in to comment.