You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
The code in GenericSoftwareUpdateManagerImpl<>::ComputeNextScheduledWaitTimeInterval() will generate a modulo-zero condition (i.e. x%0) if the query interval minimum and maximum wait times are set to the same value.
Similarly, code in GenericSoftwareUpdateManagerImpl<>::DefaultRetryPolicyCallback() will generate a modulo-zero if maxWaitTimeInMsec and minWaitTimeInMsec evaluate to the same value, e.g. due to integer rounding.
The text was updated successfully, but these errors were encountered:
The code in
GenericSoftwareUpdateManagerImpl<>::ComputeNextScheduledWaitTimeInterval()
will generate a modulo-zero condition (i.e. x%0) if the query interval minimum and maximum wait times are set to the same value.Similarly, code in
GenericSoftwareUpdateManagerImpl<>::DefaultRetryPolicyCallback()
will generate a modulo-zero if maxWaitTimeInMsec and minWaitTimeInMsec evaluate to the same value, e.g. due to integer rounding.The text was updated successfully, but these errors were encountered: