-
Notifications
You must be signed in to change notification settings - Fork 235
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
Fix comments style to pass scala style check #461
Conversation
Can one of the admins verify this patch? |
gentle ping @jlowe @tgravescs, please have a review, thx |
build |
Thanks for the fix this is great, but legal requires that you sign your commits as described here. We don't have CI setup yet to enforce this but it should be coming soon. https://github.com/NVIDIA/spark-rapids/blob/branch-0.2/CONTRIBUTING.md#sign-your-work |
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.
Need to have commits signed
To be clear, we need the commits to be signed-off rather than signed. We do not require that commits are cryptographically signed. The sign-off essentially boils down to adding the |
Signed-off-by: yangjie01 <[email protected]>
a038032
Signed-off-by: yangjie01 <[email protected]>
Thank you for your review @jlowe @revans2 @tgravescs , is ok now or "commit -s " required for the first commit? |
build |
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 think technically legal wants it for all commits, but in this case I am happy to merge it in because it should be clear for this PR the intention
@revans2 Thank you for your explanation ~ |
The test failure from CI appeared to be a flaky test, so I am going to merge this anyways. |
I filed #473 to track the test failure. |
* fix comments style * add a empty line to commit signoff Signed-off-by: yangjie01 <[email protected]> * revert empty line Signed-off-by: yangjie01 <[email protected]>
* fix comments style * add a empty line to commit signoff Signed-off-by: yangjie01 <[email protected]> * revert empty line Signed-off-by: yangjie01 <[email protected]>
* Fixed the missing min_sites and required_sites for Job. * Removed the duplicate constant. * fixed codestyle. * fixed typo, also enhanced default value.
There are 4 files in shuffle-plugin module use Incorrect comments format as following:
They don't follow the
NoScalaDoc
check rule, this pr fix these to pass scala style check.