From e4156e19b84bcfa156ccd97f80e034a1a76aa8bf Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Wed, 7 May 2025 11:05:40 +0200 Subject: [PATCH] [web] use raw compile timeout in compile-result-backend event (#25141) The alias was broken following the 60s -> 20s compile timeout change. GitOrigin-RevId: c2172090e17be60490adaae245a1f0b045e93cf1 --- services/web/app/src/Features/Compile/CompileController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/app/src/Features/Compile/CompileController.js b/services/web/app/src/Features/Compile/CompileController.js index e07fe49c80..20356f7a7a 100644 --- a/services/web/app/src/Features/Compile/CompileController.js +++ b/services/web/app/src/Features/Compile/CompileController.js @@ -216,7 +216,7 @@ const _CompileController = { ownerAnalyticsId: limits.ownerAnalyticsId, status, compileTime: timings?.compileE2E, - timeout: limits.timeout === 60 ? 'short' : 'long', + timeout: limits.timeout, server: clsiServerId?.includes('-c2d-') ? 'faster' : 'normal', isAutoCompile, isInitialCompile: stats?.isInitialCompile === 1,