-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Fix Pipeline.run() running components with only defaults in the …
…wrong order (#7426) * Fix Pipeline.run() running components with only defaults in the wrong order * Add release notes
- Loading branch information
1 parent
d038080
commit 6533483
Showing
3 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/fix-pipeline-run-disorder-382da1e6bd6db510.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixes `Pipeline.run()` logic so Components that have all their inputs with a default are run in the correct order. | ||
This happened we gather a list of Components to run internally when running the Pipeline in the order they are | ||
added during creation of the Pipeline. | ||
This caused some Components to run before they received all their inputs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters