Skip to content

Commit 4d6dd30

Browse files
committed
Comment out changes
1 parent a3dbc62 commit 4d6dd30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

powershell-adapter/psDscAdapter/psDscAdapter.psm1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -446,9 +446,9 @@ function Invoke-DscOperation {
446446
$Result = @{}
447447
$raw_obj = $dscResourceInstance.Get()
448448
$ValidProperties | ForEach-Object {
449-
if ($raw_obj.$_ -is [System.Enum]) {
450-
$Result[$_] = $raw_obj.$_.ToString()
451-
}
449+
# if ($raw_obj.$_ -is [System.Enum]) {
450+
# $Result[$_] = $raw_obj.$_.ToString()
451+
# }
452452
else {
453453
$Result[$_] = $raw_obj.$_
454454
}

0 commit comments

Comments
 (0)