Skip to content

Commit

Permalink
chore: set 31 second as timeout (#71)
Browse files Browse the repository at this point in the history
closes #63
  • Loading branch information
codeflyer authored Jan 13, 2023
1 parent 5774e5f commit 6fccef9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stacks/BasicApiStack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,21 @@ export function BasicApiStack ({ app, stack }: StackContext): { queue: Queue, bu
function: {
handler: 'basic/get-pin-router.handler',
functionName: formatResourceName(app.stage, 'getPinRouter'),
timeout: '60 seconds'
timeout: '31 seconds'
}
},
'GET /pins': {
function: {
handler: 'basic/get-pins-router.handler',
functionName: formatResourceName(app.stage, 'getPinsRouter'),
timeout: '60 seconds'
timeout: '31 seconds'
}
},
'POST /pins/{cid}': {
function: {
handler: 'basic/add-pin-router.handler',
functionName: formatResourceName(app.stage, 'postPinRouter'),
timeout: '60 seconds'
timeout: '31 seconds'
}
},
'GET /internal/pins/{cid}': {
Expand Down

0 comments on commit 6fccef9

Please sign in to comment.