Skip to content

Commit

Permalink
Merge pull request #207 from lsst/tickets/DM-38247
Browse files Browse the repository at this point in the history
DM-38247: Use long-log for ap_verify runs
  • Loading branch information
parejkoj committed Dec 4, 2023
2 parents 063021b + 7938043 commit b346346
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/lsst/ap/verify/pipeline_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ def runApPipeGen3(workspace, parsedCmdLine, processes=1):
makeApdb(_getApdbArguments(workspace, parsedCmdLine))

pipelineFile = _getPipelineFile(workspace, parsedCmdLine)
pipelineArgs = ["pipetask", "run",
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 b346346

Please sign in to comment.