Skip to content

Commit

Permalink
feat: backend completeMultiPartUpload increase memory to 1gb
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoSerranoP committed Apr 16, 2024
1 parent d52b62d commit db969d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/functions/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ export const generatePreSignedUrlsParts = functions
export const completeMultiPartUpload = functions
.region("europe-west1")
.runWith({
memory: "512MB"
memory: "1GB"
})
.https.onCall(async (data: CompleteMultiPartUploadData, context: functions.https.CallableContext): Promise<any> => {
if (!context.auth || (!context.auth.token.participant && !context.auth.token.coordinator))
Expand Down

0 comments on commit db969d9

Please sign in to comment.