Skip to content

Commit

Permalink
In maintel/take_twilight_flats_comcam.py, fix table name in ConsDB fo…
Browse files Browse the repository at this point in the history
…r sky counts.
  • Loading branch information
tribeiro authored and edennihy committed Dec 2, 2024
1 parent dc450d4 commit 932f960
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,10 @@ async def get_sky_counts(self) -> float:
"LSSTComCam", self.latest_exposure_id, detector_num
)

query = f"SELECT * from cdb_lsstcomcam.ccdvisit1_quicklook \
where ccdvisit_id={ccd_exp_id}"
query = (
"SELECT * from cdb_lsstcomcam.ccdexposure_quicklook "
f"where ccdexposure_id={ccd_exp_id}"
)
item = "postisr_pixel_median"
get_counts = functools.partial(
self.client.wait_for_item_in_row,
Expand Down

0 comments on commit 932f960

Please sign in to comment.