-
Notifications
You must be signed in to change notification settings - Fork 7
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
Cl/support click round 2 #123
Conversation
8f6cbc2
to
4e9b489
Compare
After merging, we should:
@ChenyuLInx Does that sound right to you? |
dbt_rpc/__main__.py
Outdated
@@ -596,6 +595,13 @@ def parse_args(args, cls=DBTArgumentParser): | |||
expanded_user = os.path.expanduser(parsed.project_dir) | |||
parsed.project_dir = os.path.abspath(expanded_user) | |||
|
|||
# set_args construct a flags with command run | |||
# which doesn't have defer_mode, but we need a default value | |||
parsed.defer_mode = 'eager' |
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.
Isn't 'eager'
for indirect_selection
? Does this just need to be 'any_string'
?
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.
Ha it is one of those places I didn't clean up properly. core moved this attribute to defer
. Removing it completely in the most recent commit, and pointed things to defer
resolves #122, #120