-
Notifications
You must be signed in to change notification settings - Fork 225
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
BREAKING CHANGE: SqlServerEndpoint: Added the property State #1535
BREAKING CHANGE: SqlServerEndpoint: Added the property State #1535
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1535 +/- ##
======================================
- Coverage 98% 98% -1%
======================================
Files 37 36 -1
Lines 5866 5830 -36
======================================
- Hits 5758 5722 -36
Misses 108 108 |
dc19ba6
to
b1f59d8
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.
Reviewable status: 0 of 25 files reviewed, 1 unresolved discussion
CHANGELOG.md, line 13 at r1 (raw file):
Removed resource _SqlServerEndpointState_
We should just deprecate the resource like SqlServerNetwork.
180c94f
to
a925193
Compare
fcf75a7
to
b73a2ba
Compare
637e0ee
to
d3119a9
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.
Reviewed 1 of 25 files at r1, 1 of 10 files at r2.
Reviewable status: 2 of 30 files reviewed, all discussions resolved
CHANGELOG.md, line 13 at r1 (raw file):
Previously, johlju (Johan Ljunggren) wrote…
Removed resource _SqlServerEndpointState_
We should just deprecate the resource like SqlServerNetwork.
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 19 of 25 files at r1, 9 of 10 files at r2.
Reviewable status: all files reviewed, 2 unresolved discussions
source/SqlServerDsc.psd1, line 63 at r2 (raw file):
'SqlServerEndpointState' . ... 'SqlServerNetwork'
These should not be removed.
tests/Integration/DSC_SqlServerEndPoint.config.ps1, line 54 at r2 (raw file):
Owner = $Node.Owner State = 'Started'
Should rename file, wrongly renamed back again to EndPoint
instead of Endpoint
.
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: 27 of 29 files reviewed, all discussions resolved (waiting on @johlju)
source/SqlServerDsc.psd1, line 63 at r2 (raw file):
Previously, johlju (Johan Ljunggren) wrote…
'SqlServerEndpointState' . ... 'SqlServerNetwork'
These should not be removed.
Done
tests/Integration/DSC_SqlServerEndPoint.config.ps1, line 54 at r2 (raw file):
Previously, johlju (Johan Ljunggren) wrote…
Should rename file, wrongly renamed back again to
EndPoint
instead ofEndpoint
.
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 3 of 3 files at r3.
Reviewable status:complete! all files reviewed, all discussions resolved
Pull Request (PR) description
property in the resource SqlServerEndpoint (issue BREAKING CHANGE: SqlServerEndpointState: This should be rolled into the SqlServerEndpoint resource #968).
EndpointType
was added tosupport different types of endpoints in the future. For now the only
endpoint type that is supported is the database mirror endpoint type
(
DatabaseMirroring
).State
to be able to specify if the endpoint shouldbe running, stopped, or disabled. This property was moved from the now
deprecated DSC resource
SqlServerEndpointState
.specified in the configuration.
New-SQLSelfSignedCertificate
was changedto install the dependent module
PSPKI
throughRequiredModules.psd1
.This Pull Request (PR) fixes the following issues
Task list
file CHANGELOG.md. Entry should say what was changed and how that
affects users (if applicable), and reference the issue being resolved
(if applicable).
and comment-based help.
This change is