Merge pull request #10234 from overleaf/jpa-pdf-caching-ignore-404

[web] pdf-caching: stop counting 404s on the output.pdf as failure

GitOrigin-RevId: eb76570fdce3dd79b8e0ea961722e428446672ac
This commit is contained in:
Jakob Ackermann 2022-11-01 10:49:02 +00:00 committed by Copybot
parent cd60d6719a
commit 85547ffe40

View file

@ -83,8 +83,6 @@ export function generatePdfCachingTransportFactory(PDFJS) {
OError.getFullInfo(err).url === this.url
) {
// Do not consider a 404 on the main pdf url as pdf caching failure.
// Still, bail out during the initial launch phase.
metrics.failedOnce = true
throw new PDFJS.MissingPDFException()
}
metrics.failedCount++