Remove "immutable" from long-term responses

We had a bug recently which sent out some bad "immutable" responses. We
need to have a better process around cutting releases before we can be
sure it doesn't happen again.
This commit is contained in:
Michael Jackson
2019-01-06 21:10:18 -08:00
parent e4d6df255e
commit d6fde9fb33
6 changed files with 23 additions and 21 deletions

View File

@ -35,7 +35,7 @@ function serveMetadata(req, res) {
res
.set({
'Cache-Control': 'public, max-age=31536000, immutable', // 1 year
'Cache-Control': 'public, max-age=31536000', // 1 year
'Cache-Tag': 'meta'
})
.send(metadata);