mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-22 12:28:12 +00:00
only change ttl on cached packs, not temporary ones
temporary = without versioning feature enabled cached = permanent versioned retrieved from s3
This commit is contained in:
parent
8d900013d9
commit
3f388fb0ac
1 changed files with 3 additions and 1 deletions
|
@ -204,10 +204,12 @@ module.exports = PackManager =
|
|||
return callback(err) if err?
|
||||
if not pack?
|
||||
MongoAWS.unArchivePack project_id, doc_id, pack_id, callback
|
||||
else if pack.expiresAt?
|
||||
else if pack.expiresAt? and not pack.temporary
|
||||
# we only need to touch the TTL on the listing of changes in the project
|
||||
# because diffs on individual documents are always done after that
|
||||
PackManager.increaseTTL pack, callback
|
||||
# only do this for cached packs, not temporary ones to avoid older packs
|
||||
# being kept longer than newer ones (which messes up the last update version)
|
||||
else
|
||||
callback(null, pack)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue