Merge branch 'develop' into fix-timestamps-format

This commit is contained in:
karenvicent
2025-08-20 18:16:50 -04:00
2 changed files with 1 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ import { execSync } from "child_process";
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), "");
let version = "3.0-beta";
let version = "3.1";
return {
base: "/",

View File

@@ -152,12 +152,6 @@ class StatusService {
const failures = monitor.statusWindow.filter((s) => s === false).length;
const failureRate = (failures / monitor.statusWindow.length) * 100;
console.log({
failureRate,
status: monitor.status,
statusWindow: monitor.statusWindow,
});
// If threshold has been met and the monitor is not already down, mark down:
if (failureRate >= monitor.statusWindowThreshold && monitor.status !== false) {
newStatus = false;