Make sure getcustomtoken cloud function is fast

This commit is contained in:
Marshall Polaris 2022-08-05 19:53:56 -07:00
parent 1f06f24d7a
commit 43335d2980

View File

@ -7,7 +7,13 @@ import {
writeResponseError,
} from './api'
const opts = { method: 'GET', minInstances: 1 }
const opts = {
method: 'GET',
minInstances: 1,
concurrency: 100,
memory: '2GiB',
cpu: 1,
} as const
export const getcustomtoken: EndpointDefinition = {
opts,