mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
[clsi] ignore download errors for binary files in compile from history (#32263)
GitOrigin-RevId: 3c1940b2d56701ec4b07d1457ee1af2de317a047
This commit is contained in:
@@ -22,6 +22,7 @@ import UrlCache from './UrlCache.js'
|
||||
import OError from '@overleaf/o-error'
|
||||
import ClsiMetrics from './Metrics.js'
|
||||
import { promiseMapSettledWithLimit } from '@overleaf/promise-utils'
|
||||
import Metrics from '@overleaf/metrics'
|
||||
|
||||
const gzip = promisify(zlib.gzip)
|
||||
const gunzip = promisify(zlib.gunzip)
|
||||
@@ -482,19 +483,28 @@ export async function syncResourcesToDisk(
|
||||
if (!hash) {
|
||||
throw new OError('unexpected file without content and hash', { path })
|
||||
}
|
||||
const fallbackURL = null // no fallback
|
||||
const lastModified = new Date(0) // content is static
|
||||
if (!createCacheFolder) {
|
||||
createCacheFolder = UrlCache.promises.createProjectDir(projectId)
|
||||
}
|
||||
await createCacheFolder
|
||||
await UrlCache.promises.downloadUrlToFile(
|
||||
projectId,
|
||||
blobStore.getBlobURL(hash).href,
|
||||
fallbackURL,
|
||||
Path.join(compileDir, path),
|
||||
lastModified
|
||||
)
|
||||
const url = blobStore.getBlobURL(hash).href
|
||||
try {
|
||||
const fallbackURL = null // no fallback
|
||||
const lastModified = new Date(0) // content is static
|
||||
await UrlCache.promises.downloadUrlToFile(
|
||||
projectId,
|
||||
url,
|
||||
fallbackURL,
|
||||
Path.join(compileDir, path),
|
||||
lastModified
|
||||
)
|
||||
} catch (err) {
|
||||
logger.err(
|
||||
{ err, projectId, path, resourceUrl: url },
|
||||
'error downloading file for resources'
|
||||
)
|
||||
Metrics.inc('download-failed')
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user