Commit 00d9b027 authored by wenjie.zheng's avatar wenjie.zheng

WorkflowTool.py: before processing DC workflow's worklist, check if the...

WorkflowTool.py: before processing DC workflow's worklist, check if the workflow has already been check by new workflow's worklist checker.
parent 15795ae6
......@@ -748,6 +748,8 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
worklist_dict[wf_id] = a
for wf_id in chain:
# check if the workflow has been checked.
if not did.has_key(wf_id):
did[wf_id] = None
wf = self.getWorkflowById(wf_id)
if wf is not None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment