From 63842cd28d5c71ab16c83757756c6b6d986a4945 Mon Sep 17 00:00:00 2001 From: Nicolas Peltier <1032754+npeltier@users.noreply.github.com> Date: Thu, 30 Jan 2025 16:31:21 +0100 Subject: [PATCH] MWPW-166838 fixed referential time (#3587) 82 was network ressource measure i did, here initTime performance marker duration was 35, which will more than double adjusted limit --- libs/features/mas/docs/benchmarks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/features/mas/docs/benchmarks.html b/libs/features/mas/docs/benchmarks.html index f610ded889..d38f2f5dd2 100644 --- a/libs/features/mas/docs/benchmarks.html +++ b/libs/features/mas/docs/benchmarks.html @@ -62,7 +62,7 @@ //if adjust is set to true, we adjust the limit based on the stored initTime and //reference time of 82ms it took on a quick network. This way, we should not be //affected by network speed when comparing benchmarks to limit. - const referentInitialTime = 82.0; + const referentInitialTime = 35.0; const previousLimit = limit; if (referentInitialTime < window.initTime) { limit = limit * window.initTime / referentInitialTime;