Skip to content

Commit 0fad639

Browse files
committed
fixes #97 change the default apiCallAttemptTimeout and apiCallTimeout to 20 and 60 seconds
1 parent e158e0d commit 0fad639

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/resources/config/lambda-proxy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ region: ${lambda-proxy.region:ca-central-1}
99
# endpoint override for the lambda functions
1010
endpointOverride: ${lambda-proxy.endpointOverride:}
1111
# Api call timeout in milliseconds. This sets the amount of time for the entire execution, including all retry attempts.
12-
apiCallTimeout: ${lambda-proxy.apiCallTimeout:30000}
12+
apiCallTimeout: ${lambda-proxy.apiCallTimeout:60000}
1313
# Api call attempt timeout in milliseconds. This sets the amount of time for each individual attempt.
14-
apiCallAttemptTimeout: ${lambda-proxy.apiCallAttemptTimeout:30000}
14+
apiCallAttemptTimeout: ${lambda-proxy.apiCallAttemptTimeout:20000}
1515
# log type for the lambda function invocation
1616
logType: ${lambda-proxy.logType:Tail}
1717
# When LambdaFunctionInvoker is used to invoke the downstream Lambda Function, it can collect the metrics info

0 commit comments

Comments
 (0)