fix typo mistakes

Change-Id: I274bb4b2e6ac97c6ed6d85367f96b72f3ecd06c5
This commit is contained in:
MaoyangLiu 2018-12-16 15:55:29 +08:00 committed by Dougal Matthews
parent 98589e12c9
commit efca6f2e95
2 changed files with 2 additions and 2 deletions

View File

@ -567,7 +567,7 @@ class WorkflowAction(Action):
)
# If the parent has a root_execution_id, it must be a sub-workflow. So
# we should propogate that ID down. Otherwise the parent must be the
# we should propagate that ID down. Otherwise the parent must be the
# root execution and we should use the parents ID.
root_execution_id = parent_wf_ex.root_execution_id or parent_wf_ex.id

View File

@ -1,7 +1,7 @@
---
fixes:
- |
Workflow execution integrity checker mechanism was too agressive in case
Workflow execution integrity checker mechanism was too aggressive in case
of big workflows that have many task executions in RUNNING state at the
same time. The mechanism was selecting them all in one query and calling
"on_action_complete" for each of them within a single DB transaction.