Merge pull request #16322 from overleaf/dk-ignore-clsi-warning

[web] ignore noisy CLSI 404 warning

GitOrigin-RevId: d821496e2fb91ba184a32449986c128b9b079f3f
This commit is contained in:
Jimmy Domagala-Tang 2024-01-03 09:54:32 -05:00 committed by Copybot
parent d2ab51f385
commit d94ca9679f

View file

@ -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,