Skip to content

Commit

Permalink
Exposure - pg case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
womullan committed Mar 5, 2024
1 parent 70186c2 commit 6d813ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/consdb/hinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def process_date(day_obs: str) -> None:
print("Using POSTGRES_URL {user} {host} {dbname}")
engine = create_engine(url)
metadata_obj = MetaData(schema=f"cdb_{instrument.lower()}")
exposure_table = Table("exposure", metadata_obj, autoload_with=engine)
exposure_table = Table("Exposure", metadata_obj, autoload_with=engine)


bucket_prefix = os.environ.get("BUCKET_PREFIX", "")
Expand Down

0 comments on commit 6d813ca

Please sign in to comment.