We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
seem to be calculated using random values. Setting a given minimum and maximum delay can be useful, for example:
` function Get-CalculatedDelay { param( [int] $MinDelay, [int] $MaxDelay, [int] $JitterPercentage )
$jitterFactor = (Get-Random -Minimum (-$JitterPercentage) -Maximum $JitterPercentage) / 100.0 $baseDelay = Get-Random -Minimum $MinDelay -Maximum $MaxDelay $delay = [math]::Round($baseDelay * (1 + $jitterFactor)) return $delay
}
`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
seem to be calculated using random values. Setting a given minimum and maximum delay can be useful, for example:
`
function Get-CalculatedDelay
{
param(
[int] $MinDelay,
[int] $MaxDelay,
[int] $JitterPercentage
)
}
`
The text was updated successfully, but these errors were encountered: