Skip to content

Commit

Permalink
change doc name and assign a variable for long function calling
Browse files Browse the repository at this point in the history
  • Loading branch information
wguanicedew committed Jul 8, 2022
1 parent de2e9b2 commit bf1e648
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion doc/changes/DM-35508.rst

This file was deleted.

5 changes: 3 additions & 2 deletions python/lsst/ctrl/bps/panda/idds_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,11 @@ def create_raw_jobs_dependency_map(self):
"job pseudo input file name contains more than 4000 symbols. Can not proceed."
)

self.tasks_cmd_lines[self.define_task_name(gwjob.label)] = cmd_line
task_name_for_label = self.define_task_name(gwjob.label)
self.tasks_cmd_lines[task_name_for_label] = cmd_line
self.jobs_steps[pseudo_file_name] = gwjob.label
if gwjob.number_of_retries:
self.number_of_retries[self.define_task_name(gwjob.label)] = gwjob.number_of_retries
self.number_of_retries[task_name_for_label] = gwjob.number_of_retries
dependency_map[pseudo_file_name] = []
predecessors = self.bps_workflow.predecessors(job_name)
for parent_name in predecessors:
Expand Down

0 comments on commit bf1e648

Please sign in to comment.