Make sure getcustomtoken cloud function is fast
This commit is contained in:
parent
1f06f24d7a
commit
43335d2980
|
@ -7,7 +7,13 @@ import {
|
||||||
writeResponseError,
|
writeResponseError,
|
||||||
} from './api'
|
} 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 = {
|
export const getcustomtoken: EndpointDefinition = {
|
||||||
opts,
|
opts,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user