Skip to content

Commit e4d1974

Browse files
committed
Changed default check for configuration check to false
1 parent aea501f commit e4d1974

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

internal/functions/Test-PdcConfiguration.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function Test-PdcConfiguration {
4949
$result = [PSCustomObject]@{
5050
SqlInstance = $null
5151
Database = $null
52-
Check = $true
52+
Check = $false
5353
Message = ""
5454
}
5555

@@ -105,6 +105,7 @@ function Test-PdcConfiguration {
105105
# Check if an error occured
106106
if (-not $errorOccured) {
107107
$result.Message = "All OK"
108+
$result.Check = $true
108109
}
109110

110111
Write-PSFMessage -Message "Finished checking configurations" -Level Verbose

0 commit comments

Comments
 (0)