-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: namespaced outputs in
BaseRestartWorkChain
(#4961)
The `BaseRestartWorkChain` did not return an `output_namespace` of its `_process_class` as described in #4623. It happened because in its `results` method, only the output keys are obtained from the call to `node.get_outgoing` (checked and returned by the parent WorkChain). This was changed for a call to `exposed_outputs`, which instead returns the whole nested namespace. The `out_many` method is not used here in order to make a post-check for ports that allows to keep the original exit code check and report. Cherry-pick: e1abe0a
- Loading branch information
Showing
2 changed files
with
50 additions
and
3 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
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