Skip to content

Commit

Permalink
Fixed hardcoded schema for Queue manager
Browse files Browse the repository at this point in the history
  • Loading branch information
glaubervila committed Nov 7, 2024
1 parent f4b416d commit 626f148
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/lsst/consdb/efd_transform/transform_efd.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,7 @@ async def main() -> None:
)

# Instantiate the queue manager
# TODO: Set schema by instrument
qm = QueueManager(db_uri=consdb_url, schema="cdb_latiss", logger=log)
qm = QueueManager(db_uri=consdb_url, schema=tm.get_schema_by_instrument(args.instrument), logger=log)

start_time = None
if args.start_time is not None:
Expand Down

0 comments on commit 626f148

Please sign in to comment.