From d94ca9679ff329caac026f7c807cc67944facb62 Mon Sep 17 00:00:00 2001 From: Jimmy Domagala-Tang Date: Wed, 3 Jan 2024 09:54:32 -0500 Subject: [PATCH] Merge pull request #16322 from overleaf/dk-ignore-clsi-warning [web] ignore noisy CLSI 404 warning GitOrigin-RevId: d821496e2fb91ba184a32449986c128b9b079f3f --- .../web/app/src/Features/Compile/CompileController.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/services/web/app/src/Features/Compile/CompileController.js b/services/web/app/src/Features/Compile/CompileController.js index e55df11845..99cda1601e 100644 --- a/services/web/app/src/Features/Compile/CompileController.js +++ b/services/web/app/src/Features/Compile/CompileController.js @@ -637,6 +637,14 @@ module.exports = CompileController = { // Ignore noisy spurious error return } + if ( + err instanceof RequestFailedError && + ['sync-to-code', 'sync-to-pdf', 'output-file'].includes(action) + ) { + // Ignore noisy error + // https://github.com/overleaf/internal/issues/15201 + return + } logger.warn( { err,