Merge branch 'master' into update-nano

This commit is contained in:
Sam Rose 2024-01-31 14:43:44 +00:00 committed by GitHub
commit 682c3c6c14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"version": "2.16.0",
"version": "2.16.1",
"npmClient": "yarn",
"packages": [
"packages/*",

View File

@ -23,7 +23,7 @@ const getCloudfrontSignParams = () => {
return {
keypairId: env.CLOUDFRONT_PUBLIC_KEY_ID!,
privateKeyString: getPrivateKey(),
expireTime: new Date().getTime() + 1000 * 60 * 60, // 1 hour
expireTime: new Date().getTime() + 1000 * 60 * 60 * 24, // 1 day
}
}