Skip to content

Commit

Permalink
Merge branch 'tickets/DM-37411'
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenam committed Jan 5, 2023
2 parents 7876bc6 + 119296a commit 7212e02
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/lsst/meas/deblender/sourceDeblendTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,10 @@ class SourceDeblendConfig(pexConfig.Config):
propagateAllPeaks = pexConfig.Field(dtype=bool, default=False,
doc=('Guarantee that all peaks produce a child source.'))
catchFailures = pexConfig.Field(
dtype=bool, default=False,
dtype=bool,
default=True,
doc=("If True, catch exceptions thrown by the deblender, log them, "
"and set a flag on the parent, instead of letting them propagate up"))
"and set a flag on the parent, instead of letting them propagate up."))
maskPlanes = pexConfig.ListField(dtype=str, default=["SAT", "INTRP", "NO_DATA"],
doc="Mask planes to ignore when performing statistics")
maskLimits = pexConfig.DictField(
Expand Down

0 comments on commit 7212e02

Please sign in to comment.