-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor bug/usability fixes for 1.22.1
#140
Conversation
This ensures that they can only be ParameterizedDependency (source or value).
4ee94e3
to
7e446d5
Compare
456757c
to
4f23776
Compare
4f23776
to
cb5385f
Compare
1.22.1
@@ -173,26 +200,10 @@ def __init__( | |||
self.inputs = inputs if inputs is not None else {} | |||
self.config = config if config is not None else {} | |||
self.external_inputs = external_inputs if external_inputs is not None else [] | |||
self._validate_config_inputs(self.config, self.inputs) | |||
_validate_config_inputs(self.config, self.inputs) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably want a try catch here to then contextualize that it's a subdag
decorator for node FOO
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep good idea
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah so looks alright -- we might want to think about how to ensure when an error occurs it provides the right context of the decorator and node name.
f76cd85
to
9dd521e
Compare
[Short description explaining the high-level reason for the pull request]
Changes
How I tested this
Notes
Checklist