mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #4479 from omnivore-app/jacksonh/export-expiration
Increase timeout on download links
This commit is contained in:
commit
44f001801c
1 changed files with 1 additions and 1 deletions
|
|
@ -253,7 +253,7 @@ export const exportJob = async (jobData: ExportJobData) => {
|
|||
// generate a temporary signed url for the zip file
|
||||
const [signedUrl] = await file.getSignedUrl({
|
||||
action: 'read',
|
||||
expires: Date.now() + 86400 * 1000, // 15 minutes
|
||||
expires: Date.now() + 48 * 60 * 60 * 1000, // 24 hours
|
||||
})
|
||||
|
||||
logger.info('signed url for export:', {
|
||||
|
|
|
|||
Loading…
Reference in a new issue