Lengthen cache ttl on 404s

This commit is contained in:
Michael Jackson 2019-01-28 12:15:05 -08:00
parent 8479400c23
commit 20c4926e13
1 changed files with 23 additions and 17 deletions

View File

@ -94,9 +94,7 @@ function searchEntries(tarballStream, entryName, wantsIndex) {
const chunks = [];
stream
.on('data', chunk => chunks.push(chunk))
.on('end', () => {
stream.on('data', chunk => chunks.push(chunk)).on('end', () => {
const content = Buffer.concat(chunks);
// Set some extra properties for files that we will
@ -139,6 +137,10 @@ export default function findFile(req, res, next) {
if (!foundEntry) {
return res
.status(404)
.set({
'Cache-Control': 'public, max-age=31536000', // 1 year
'Cache-Tag': 'missing, missing-entry'
})
.type('text')
.send(`Cannot find "${req.filename}" in ${req.packageSpec}`);
}
@ -158,6 +160,10 @@ export default function findFile(req, res, next) {
} else {
return res
.status(404)
.set({
'Cache-Control': 'public, max-age=31536000', // 1 year
'Cache-Tag': 'missing, missing-index'
})
.type('text')
.send(
`Cannot find an index in "${req.filename}" in ${