Skip to content

Commit

Permalink
Add note about the rationale for fail-fast
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Dec 4, 2023
1 parent 7d80192 commit 7938043
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/lsst/ap/verify/pipeline_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ def runApPipeGen3(workspace, parsedCmdLine, processes=1):

pipelineFile = _getPipelineFile(workspace, parsedCmdLine)
pipelineArgs = ["pipetask", "--long-log", "run",
# fail-fast to ensure processing errors are obvious, and
# to compensate for the extra interconnections added by
# --graph-fixup (further down).
"--fail-fast",
"--butler-config", workspace.repo,
"--pipeline", pipelineFile,
Expand Down

0 comments on commit 7938043

Please sign in to comment.