Skip to content
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.

Commit

Permalink
Fix missing quote in Java 8 LambdaRuntime.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mhart committed Jun 30, 2018
1 parent f47f3e4 commit b02498c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class LambdaRuntime {
AWS_SESSION_TOKEN = getEnv("AWS_SESSION_TOKEN");
AWS_REGION = getEnvOrDefault("AWS_REGION", getEnvOrDefault("AWS_DEFAULT_REGION", "us-east-1"));
ACCOUNT_ID = getEnvOrDefault("AWS_ACCOUNT_ID", "000000000000");
FUNCTION_ARN = getEnvOrDefault("AWS_LAMBDA_FUNCTION_INVOKED_ARN,
FUNCTION_ARN = getEnvOrDefault("AWS_LAMBDA_FUNCTION_INVOKED_ARN",
"arn:aws:lambda:" + AWS_REGION + ":" + ACCOUNT_ID + ":function:" + FUNCTION_NAME);
X_AMZN_TRACE_ID = getEnvOrDefault("_X_AMZN_TRACE_ID", "");

Expand Down

0 comments on commit b02498c

Please sign in to comment.