Skip to content

Commit

Permalink
Add the old config names back in with a deprecation warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
sr525 committed Jan 17, 2024
1 parent 016b5cc commit 2f5f85a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions python/lsst/analysis/tools/tasks/catalogMatch.py
Expand Up @@ -156,6 +156,18 @@ class CatalogMatchConfig(pipeBase.PipelineTaskConfig, pipelineConnections=Catalo
default="dec",
)

raColumn = pexConfig.Field[str](
doc="RA column.",
default="coord_ra",
deprecated="This field was replaced with targetRaColumn and is unused. Will be removed after v27.",
)

decColumn = pexConfig.Field[str](
doc="Dec column.",
default="coord_dec",
deprecated="This field was replaced with targetDecColumn and is unused. Will be removed after v27.",
)

patchColumn = pexConfig.Field[str](doc="Patch column.", default="patch")

matchesRefCat = pexConfig.Field[bool](
Expand Down

0 comments on commit 2f5f85a

Please sign in to comment.