Skip to content

Commit

Permalink
DM-47414: In base_camera.py, remove support for splitting guider ROI …
Browse files Browse the repository at this point in the history
…specs into multiple part. Size limit no longer exists.
  • Loading branch information
kfanning committed Dec 18, 2024
1 parent 21b8305 commit 1e24300
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions doc/news/DM-47414.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
::::::::::::::
doc/news/DM-47414.removal.rst
::::::::::::::
In base_camera.py, remove support for splitting guider ROI specs into multiple part. Size limit no longer exists.

1 change: 0 additions & 1 deletion python/lsst/ts/observatory/control/base_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,6 @@ async def init_guider(self, roi_spec: ROISpec) -> None:
roi = roi_spec_dict.pop("roi")
roi_spec_dict.update(roi)
roi_spec_json = json.dumps(roi_spec_dict, separators=(",", ":"))
self.log.info(f"ROISpec(len:{len(roi_spec_json)}) fits in one command.")
await self.camera.cmd_initGuiders.set_start(
roiSpec=roi_spec_json,
timeout=self.long_timeout,
Expand Down

0 comments on commit 1e24300

Please sign in to comment.