-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Support for native services #2244
Support for native services #2244
Conversation
1921654
to
336c636
Compare
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.
LGTM
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.
LGTM, why not 👍
@@ -619,6 +620,9 @@ def parse_args_and_make_package(args=None): | |||
ap.add_argument('--service', dest='services', action='append', default=[], | |||
help='Declare a new service entrypoint: ' | |||
'NAME:PATH_TO_PY[:foreground]') | |||
ap.add_argument('--native-service', dest='native_services', action='append', default=[], | |||
help='Declare a new native service: ' | |||
'package.name.service') |
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.
Minor: no sure why this line is broken down in two
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.
No specific reason, I just used the same codestyle than for the previous argument (line 620/621) for consistency.
Thanks for the merge!
Was it intentional to merge this into |
ow, probably an overlook! |
Ah, that's my mistake, GitHub didn't pick the default branch when I created the PR therefore it targeted |
ouch I completely missed that 🤦 |
Fixes #2243