From 9fc0373fab8cf4f49602c4bcae04530e19297da2 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Tue, 8 Jul 2025 13:42:17 +0200 Subject: [PATCH] [terraform] clsi: add C3D trial (#26929) * [terraform] clsi: add C3D trial * [terraform] clsi: switch C3D to standard variant with local SSD GitOrigin-RevId: 6e6ceeb93ee94800d8ce46557322da82dc99fc2a --- services/web/app/src/Features/Compile/CompileController.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/services/web/app/src/Features/Compile/CompileController.js b/services/web/app/src/Features/Compile/CompileController.js index 69ad20e398..4ff790f5e2 100644 --- a/services/web/app/src/Features/Compile/CompileController.js +++ b/services/web/app/src/Features/Compile/CompileController.js @@ -209,7 +209,11 @@ const _CompileController = { status, compileTime: timings?.compileE2E, timeout: limits.timeout, - server: clsiServerId?.includes('-c2d-') ? 'faster' : 'normal', + server: + clsiServerId?.includes('-c2d-') || clsiServerId?.includes('-c3d-') + ? 'faster' + : 'normal', + clsiServerId, isAutoCompile, isInitialCompile: stats?.isInitialCompile === 1, restoredClsiCache: stats?.restoredClsiCache === 1,