Skip to content

Commit

Permalink
Merge pull request #294 from privacy-scaling-explorations/fix/finaliz…
Browse files Browse the repository at this point in the history
…e-ceremony-memory

fix: increase memory limit of finalizeCeremony CF
  • Loading branch information
NicoSerranoP authored Jun 12, 2024
2 parents c0f6a3d + 531b682 commit 6c2fe5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/functions/ceremony.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export const initEmptyWaitingQueueForCircuit = functions
export const finalizeCeremony = functions
.region("europe-west1")
.runWith({
memory: "512MB"
memory: "1GB"
})
.https.onCall(async (data: { ceremonyId: string }, context: functions.https.CallableContext): Promise<any> => {
if (!context.auth || !context.auth.token.coordinator) logAndThrowError(COMMON_ERRORS.CM_NOT_COORDINATOR_ROLE)
Expand Down

0 comments on commit 6c2fe5a

Please sign in to comment.