We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 652d231 commit f8a0741Copy full SHA for f8a0741
server/src/service/infrastructure/statusService.js
@@ -158,7 +158,7 @@ class StatusService {
158
statusChanged = true;
159
}
160
// If the failure rate is below the threshold and the monitor is down, recover:
161
- else if (failureRate <= monitor.statusWindowThreshold && monitor.status === false) {
+ else if (failureRate < monitor.statusWindowThreshold && monitor.status === false) {
162
newStatus = true;
163
164
0 commit comments