Skip to content

Commit

Permalink
Fix hashtable
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Oct 24, 2021
1 parent 40d2501 commit 96753df
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1958,12 +1958,13 @@ function Wait-EmptyDiscardsCompletion

# log the undrainable entries
$discardInfo = Get-DiscardInfo -server $Server
$discardInfo | Where-Object { $ActiveServers -notcontains $_.Id.Split('.')[0] } | ForEach-Object {
Write-SkippedEvent -Source $Server -Stage ShadowDiscardDrain -Id $_.Id `
-Count $_.Count -Reason @{
Reason = $Script:ServerInMM
$discardInfo |
Where-Object { $ActiveServers -notcontains $_.Id.Split('.')[0] } |
ForEach-Object {
Write-SkippedEvent -Source $Server -Stage ShadowDiscardDrain -Id $_.Id -Count $_.Count -Reason @{
Reason = $Script:ServerInMM
}
}
}

# wait for discard events to be drained
$getDiscardInfo = `
Expand Down

0 comments on commit 96753df

Please sign in to comment.