Преглед изворни кода

Merge pull request #15195 from overleaf/tm-compile-timeout-20s-phase-two-date-change

Update new/existing user cut off date for compile timeout

GitOrigin-RevId: 382e8bc171f1d3728cfbaefa85d9c2d13779d4ee
John Lees-Miller пре 2 година
родитељ
комит
8f1dac6d68
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      services/web/app/src/Features/Compile/CompileManager.js

+ 1 - 1
services/web/app/src/Features/Compile/CompileManager.js

@@ -13,7 +13,7 @@ const { getAnalyticsIdFromMongoUser } = require('../Analytics/AnalyticsHelper')
 
 const NEW_COMPILE_TIMEOUT_ENFORCED_CUTOFF = new Date('2023-09-18T11:00:00.000Z')
 const NEW_COMPILE_TIMEOUT_ENFORCED_CUTOFF_DEFAULT_BASELINE = new Date(
-  '2023-10-08T11:00:00.000Z'
+  '2023-10-10T11:00:00.000Z'
 )
 
 module.exports = CompileManager = {