Skip to content

Commit

Permalink
Bump JDK version to 17 in aws-lambda related extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
yuokada committed Apr 8, 2024
1 parent 9fc4e97 commit d9a771f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/aws-lambda-http.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ Do not change the Lambda handler name.
----
Properties:
Handler: io.quarkus.amazon.lambda.runtime.QuarkusStreamHandler::handleRequest
Runtime: java11
Runtime: java17
----

This handler is a bridge between the lambda runtime and the Quarkus HTTP framework you are using (Jakarta REST, Servlet, etc.)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Type: AWS::Serverless::Function
Properties:
Handler: io.quarkus.amazon.lambda.runtime.QuarkusStreamHandler::handleRequest
Runtime: java11
Runtime: java17
CodeUri: function.zip
MemorySize: 512
Policies: AWSLambdaBasicExecutionRole
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Type: AWS::Serverless::Function
Properties:
Handler: io.quarkus.amazon.lambda.runtime.QuarkusStreamHandler::handleRequest
Runtime: java11
Runtime: java17
CodeUri: function.zip
MemorySize: 512
Policies: AWSLambdaBasicExecutionRole
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function cmd_update() {

FUNCTION_NAME=${lambdaName}
HANDLER=${handler}
RUNTIME=java11
RUNTIME=java17
ZIP_FILE=${targetUri}

function usage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Resources:
Type: AWS::Serverless::Function
Properties:
Handler: ${handler}
Runtime: java11
Runtime: java17
CodeUri: function.zip
MemorySize: 256
Timeout: 15
Expand Down

0 comments on commit d9a771f

Please sign in to comment.