-
Notifications
You must be signed in to change notification settings - Fork 149
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
Feature: #241 Anonymous authentication #408
base: main
Are you sure you want to change the base?
Feature: #241 Anonymous authentication #408
Conversation
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
@cezarypiatek Is the errors you getting unrelated to the changes in this PR? Could you please rebase against the dev branch. That will kick off the tests agai, and if the errors you are seeing is unrelated to the changes, maybe they pass this time. |
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 understand. Always happy to help, but I been overwhelmed at work last quarter, and guess @regedit32 also have been busy. Sorry it took so long for someone to look at this and help you.
I had a quick look at this and debugged it in VS Code. I saw a back tick that was placed wrong.
Reviewable status: 0 of 3 files reviewed, 2 unresolved discussions (waiting on @cezarypiatek)
a discussion (no related file):
Could you please rebase against branch dev using git rebase
(not by using git pull
or git merge
, to keep the commit history). If you don't know how to rebase your local dev and working branch, please look at how to Resolve merge conflicts.
Let me know if you need any assistance.
Tests/Unit/MSFT_xWebsite.Tests.ps1, line 560 at r1 (raw file):
-AnonymousCredentials $MockAnonymousCredentials`
The back tick should be one space apart. This is what is giving the issue in the tests.
Also, there is an extra space between the parameter name and the variable name.
Should be: -AnonymousCredentials $MockAnonymousCredentials
`
Codecov Report
@@ Coverage Diff @@
## dev #408 +/- ##
=========================================
- Coverage 90.77% 90.5% -0.27%
=========================================
Files 17 17
Lines 2438 2434 -4
=========================================
- Hits 2213 2203 -10
- Misses 225 231 +6
Continue to review full report at Codecov.
|
@johlju thanks for help, now I can continue my work with this feature. |
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
@cezarypiatek Please see comments in the issue #241. Tag me here if that was not the cause of the problem and I can dig in further. |
Pull Request (PR) description
This is an attempt of implementing the ability to configure credentials for anonymous authentication.
I added
AnonymousCredentials
parameter forxWebsite
module. I've started adding UT but I've got stuck with this weird error related to CIM objects. Can anybody review my current changes and help me with this issue? Error message that I get from UT:This Pull Request (PR) fixes the following issues #241
Task list
Entry should say what was changed, and how that affects users (if applicable).
and comment-based help.
This change is