mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #16322 from overleaf/dk-ignore-clsi-warning
[web] ignore noisy CLSI 404 warning GitOrigin-RevId: d821496e2fb91ba184a32449986c128b9b079f3f
This commit is contained in:
parent
d2ab51f385
commit
d94ca9679f
1 changed files with 8 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue