Skip to content

Commit

Permalink
fix: memory increase to 24gb
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoSerranoP committed Nov 26, 2024
1 parent 06d1ee9 commit bbaaa16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/functions/circuit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ const checkIfVMRunning = async (ec2: EC2Client, vmInstanceId: string, attempts =
* 2) Send all updates atomically to the Firestore database.
*/
export const verifycontribution = functionsV2.https.onCall(
{ memory: "32GiB", timeoutSeconds: 3600, region: "europe-west1", cpu: 6 },
{ memory: "24GiB", timeoutSeconds: 3600, region: "europe-west1", cpu: 6 },
async (request: functionsV2.https.CallableRequest<VerifyContributionData>): Promise<any> => {
try {
if (!request.auth || (!request.auth.token.participant && !request.auth.token.coordinator))
Expand Down

0 comments on commit bbaaa16

Please sign in to comment.