File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ A CLI to install the New Relic AWS Lambda integration and layers.
3737* java8.al2
3838* java11
3939* java17
40+ * java21
4041* nodejs16.x
4142* nodejs18.x
4243* nodejs20.x
Original file line number Diff line number Diff line change 1010NEW_RELIC_ARN_PREFIX_TEMPLATE = "arn:aws:lambda:%s:451483290750"
1111RUNTIME_CONFIG = {
1212 "dotnetcore3.1" : {"LambdaExtension" : True },
13+ "java21" : {
14+ "Handler" : "com.newrelic.java.HandlerWrapper::" ,
15+ "LambdaExtension" : True ,
16+ },
1317 "java17" : {
1418 "Handler" : "com.newrelic.java.HandlerWrapper::" ,
1519 "LambdaExtension" : True ,
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ def test_supports_lambda_extension():
7777 supports_lambda_extension (runtime )
7878 for runtime in (
7979 "dotnetcore3.1" ,
80+ "java21" ,
8081 "java17" ,
8182 "java11" ,
8283 "java8.al2" ,
You can’t perform that action at this time.
0 commit comments