Skip to content

Commit f722880

Browse files
authored
Merge pull request #478 from anmenaga/buildfix
WinPSAdapter fix
2 parents b017179 + 7dd51b8 commit f722880

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

powershell-adapter/psDscAdapter/win_psDscAdapter.psm1

+1-20
Original file line numberDiff line numberDiff line change
@@ -80,32 +80,13 @@ function Invoke-DscCacheRefresh {
8080
# if there is nothing in the cache file - refresh cache
8181
$refreshCache = $true
8282
"Filtered DscResourceCache cache is empty" | Write-DscTrace
83-
}
84-
else
85-
{
86-
"Checking cache for stale entries" | Write-DscTrace
87-
88-
foreach ($cacheEntry in $dscResourceCacheEntries) {
89-
#"Checking cache entry '$($cacheEntry.Type) $($cacheEntry.LastWriteTimes)'" | Write-DscTrace -Operation Trace
90-
91-
$cacheEntry.LastWriteTimes.PSObject.Properties | ForEach-Object {
92-
93-
if (-not ((Get-Item $_.Name).LastWriteTime.Equals([DateTime]$_.Value)))
94-
{
95-
"Detected stale cache entry '$($_.Name)'" | Write-DscTrace
96-
$refreshCache = $true
97-
break
98-
}
99-
}
100-
101-
"Filtered DscResourceCache cache is empty" | Write-DscTrace
10283
}
10384
else
10485
{
10586
"Checking cache for stale entries" | Write-DscTrace
10687

10788
foreach ($cacheEntry in $dscResourceCacheEntries) {
108-
"Checking cache entry '$($cacheEntry.Type) $($cacheEntry.LastWriteTimes)'" | Write-DscTrace -Operation Trace
89+
#"Checking cache entry '$($cacheEntry.Type) $($cacheEntry.LastWriteTimes)'" | Write-DscTrace -Operation Trace
10990

11091
$cacheEntry.LastWriteTimes.PSObject.Properties | ForEach-Object {
11192

0 commit comments

Comments
 (0)