-
Notifications
You must be signed in to change notification settings - Fork 283
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
Remove extra_env and corresponding test #581
Conversation
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.
This looks good to me @kevin-bates. Will tag @MSeal for review too since he has more historical context.
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.
I'm good with removing this. I believe this is the pattern (
def _launch(extra_env): |
@willingc and @MSeal - thank you for the review and merge. Matt, regarding...
I'm a little confused about what capability is being removed since I don't mind incrementing the minor version on the next release for this particular change but just wanted to understand what capability was being removed. Thanks. |
That's a decent argument for it being classified as a bug fix. I have found that if it exists in any capacity, someone somewhere has extended and repurposed it, so I tend to assume if I am deleting something that could be used it's a breaking change. Hence the minor version suggestion. Nothing beyond that on my thinking and it's not a strong opinion therein for this change. |
Ok - thank you for the explanation.
I agree totally agree and I'm guilty of that myself. 😄 Ok - let's move to |
As mentioned here, the use of
extra_env
is essentially rogue code that came into existence as part of future work that later was removed from master (or something like that). These changes remove its use since its existence interferes with the use of the long-deprecatedkernel_cmd
trait.Fixes #580