-
Notifications
You must be signed in to change notification settings - Fork 141
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
xWaitForADDomain: Fix Issue #341 #435
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #435 +/- ##
===================================
Coverage 96% 96%
===================================
Files 20 20
Lines 2599 2599
Branches 10 10
===================================
Hits 2502 2502
Misses 87 87
Partials 10 10 |
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.
Awesome work on this, thank you! 😃 Just one comment.
Reviewed 2 of 2 files at r1.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @RobertCGouge)
DSCResources/MSFT_xWaitForADDomain/MSFT_xWaitForADDomain.psm1, line 34 at r1 (raw file):
# The name of the Active Directory domain to wait for.
We should not have these comments above each parameter. Throughout.
These should also be removed/moved if they exist when adding the comment-based help.
@RobertCGouge another thing. if you see the comment lines go over ~80 chars, then please line break them around ~80 chars (not a hard limit), it helps when reviewing. Don't think that was an issue in this resource though, but there will be others, as I'm hoping you want to resolve the others issues as well eventually. 😁 "editor.rulers": [
80
], |
Thank you for the guidance. I have always thought the best practice was to have the help in both places. I've removed the comments from inside the function and left them in the comment blocks. |
@RobertCGouge No worries, happy to help out. Looks like the descriptions above the parameters i Get-TargetResource was not removed. 🙂 Also, when you have resolved the review comments, or if you need to discuss a comment. Could you please go into Reviewable and write 'Done' (or click the done-button) on each of the review comments. This allows me to acknowledge (resolve) the review comments and I know that you are done with each change. After you written 'Done' on each review comment, or comment on the review comment if it needs further discussion, then click the big green 'Publish' button on top of the page. That will send all your comments back as one big comment to this PR. |
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.
Reviewable status: 1 of 2 files reviewed, 1 unresolved discussion (waiting on @johlju)
DSCResources/MSFT_xWaitForADDomain/MSFT_xWaitForADDomain.psm1, line 34 at r1 (raw file):
Previously, johlju (Johan Ljunggren) wrote…
# The name of the Active Directory domain to wait for.
We should not have these comments above each parameter. Throughout.
These should also be removed/moved if they exist when adding the comment-based help.
Done.
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.
Reviewed 1 of 1 files at r3.
Reviewable status: complete! all files reviewed, all discussions resolved
@RobertCGouge merged! Thank you so much! |
Pull Request (PR) description
This PR addresses issue #341. It adds comment based help to the xWaitForADDomain resource.
This Pull Request (PR) fixes the following issues
Task list
Entry should say what was changed, and how that affects users (if applicable).
and comment-based help.
This change is