Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonh committed Nov 2, 2024
1 parent b74b1d4 commit 159b827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/jobs/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,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() + 48 * 60 * 60 * 1000, // 24 hours
expires: Date.now() + 48 * 60 * 60 * 1000, // 48 hours
})

logger.info('signed url for export:', {
Expand Down

0 comments on commit 159b827

Please sign in to comment.