Skip to content

Commit 396f767

Browse files
committed
fix: readme
1 parent e1f5873 commit 396f767

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

experimental/aws-lambda-java-profiler/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ the result to is configurable using an environment variable.
8888
- Ensure the Lambda function execution role has the necessary permissions to write to the S3 bucket.
8989
- Verify that the environment variables are set correctly in your Lambda function configuration.
9090
- Check CloudWatch logs for any error messages from the extension.
91+
- The profiler extension uses dependencies such as `com.amazonaws:aws-lambda-java-core`, `com.amazonaws:aws-lambda-java-events` and `software.amazon.awssdk:s3`. If you're using the same dependencies in your Lambda function, make sure that the versions match those used by the extension as mismatched versions can lead to compatibility issues.
9192

9293
## Contributing
9394

experimental/aws-lambda-java-profiler/extension/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414
implementation 'com.amazonaws:aws-lambda-java-core:1.2.3'
1515
implementation 'com.amazonaws:aws-lambda-java-events:3.11.5'
1616
implementation("tools.profiler:async-profiler:3.0")
17-
implementation("software.amazon.awssdk:s3:2.28.9") {
17+
implementation("software.amazon.awssdk:s3:2.31.2") {
1818
exclude group: 'software.amazon.awssdk', module: 'netty-nio-client'
1919
}
2020
}

0 commit comments

Comments
 (0)