Skip to content

Commit

Permalink
adjust update timings
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbtw committed Apr 2, 2024
1 parent 22c2c72 commit d336cbc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions serverless.mcall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const serverlessConfiguration: AWS = {

functions: {
getAllStores: {
memorySize: 512,
memorySize: 368,
timeout: 900,
handler: 'src/stacks/mcall/getAllStores.handler',
events: [
Expand Down Expand Up @@ -60,7 +60,7 @@ const serverlessConfiguration: AWS = {
handler: 'src/stacks/mcall/getItemStatus.handlerEl',
events: [
{
schedule: 'cron(20 0 ? * SUN *)'
schedule: 'cron(20 * * * ? *)'
}
],
environment: {
Expand Down
2 changes: 1 addition & 1 deletion serverless.mcau.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const serverlessConfiguration: AWS = {
handler: 'src/stacks/mcau/getItemStatus.handler',
events: [
{
schedule: 'cron(0/30 * * * ? *)'
schedule: 'cron(0 * * * ? *)'
}
],
environment: {
Expand Down
2 changes: 1 addition & 1 deletion serverless.mcus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const serverlessConfiguration: AWS = {
handler: 'src/stacks/mcus/getItemStatus.handler',
events: [
{
schedule: 'cron(0/15 * * * ? *)'
schedule: 'cron(0/30 * * * ? *)'
}
],
environment: {
Expand Down

0 comments on commit d336cbc

Please sign in to comment.