Skip to content

Commit

Permalink
Address comments from @mwunderl
Browse files Browse the repository at this point in the history
- Revert changes to 5-invoke.sh script after noting config change
- Update function timeout from 10s -> 30s in CFN stack templates
  • Loading branch information
yualexan committed Sep 9, 2022
1 parent d00fb82 commit 716117f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sample-apps/s3-java/5-invoke.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if [ ! -f event.json ]; then
fi
while true; do
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json --cli-binary-format raw-in-base64-out
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
cat out.json
echo ""
sleep 2
Expand Down
2 changes: 1 addition & 1 deletion sample-apps/s3-java/template-mvn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Resources:
Runtime: java8
Description: Java function
MemorySize: 512
Timeout: 10
Timeout: 30
# Function's execution role
Policies:
- AWSLambdaBasicExecutionRole
Expand Down
2 changes: 1 addition & 1 deletion sample-apps/s3-java/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Resources:
Runtime: java8
Description: Java function
MemorySize: 512
Timeout: 10
Timeout: 30
# Function's execution role
Policies:
- AWSLambdaBasicExecutionRole
Expand Down

0 comments on commit 716117f

Please sign in to comment.