Skip to content

Commit

Permalink
Increase memory limit for TE.sync to 512MB (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
anantakrishna committed Mar 6, 2024
1 parent 57b5f29 commit 10e9ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/TrackEditing/TE.functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const importTasks = functions
});

export const syncAllotments = functions
.runWith({ timeoutSeconds: 120 })
.runWith({ timeoutSeconds: 120, memory: '512MB' })
.pubsub.schedule('every 1 hours from 05:00 to 00:00')
.timeZone(functions.config().coordinator.timezone as string)
.onRun(async () => {
Expand Down

0 comments on commit 10e9ace

Please sign in to comment.