We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a02aa01 commit fb36e35Copy full SHA for fb36e35
lambda-debug-mode/lambda-java-debugging/Makefile
@@ -57,8 +57,10 @@ deploy-sam: ## Deploy the Lambda function via AWS SAM CLI
57
$(SAM) deploy
58
59
invoke: ## Invoke the Lambda function and show logs
60
- $(AWS) lambda invoke --function-name $(FUNCTION_NAME) \
+ AWS_MAX_ATTEMPTS=1 $(AWS) lambda invoke --function-name $(FUNCTION_NAME) \
61
--payload file://events/event.json \
62
+ --cli-connect-timeout 3600 \
63
+ --cli-read-timeout 3600 \
64
--log-type Tail \
65
response.json | jq .LogResult -r | base64 -d && cat response.json | jq -r .result
66
0 commit comments