Skip to content

Commit

Permalink
Use 'raw' instead of optional dummy connection for dimensions hack.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Nov 7, 2024
1 parent 0087904 commit baab7a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions python/lsst/donut/viz/aggregate_visit.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,16 +181,16 @@ class AggregateDonutTablesTaskConnections(
multiple=True,
)
dummyExposureJoiner = ct.Input(
name="dummy_exposure_joiner",
name="raw",
doc=(
"A dummy connections (datasets never actually need to exist) "
"A dummy connection (datasets are never actually loaded) "
"that adds the 'exposure' dimension to the QG generation query "
"in order to relate 'visit' and 'group'."
),
dimensions=("exposure",),
storageClass="AstropyTable",
dimensions=("exposure", "detector"),
storageClass="Exposure",
deferLoad=True,
multiple=True,
minimum=0,
)

def __init__(self, *, config=None):
Expand Down

0 comments on commit baab7a8

Please sign in to comment.