Skip to content

Commit e66ddcf

Browse files
authored
fix: Readme and troubleshooting section (#530)
* fix: readme * fix: path for GitHub Action
1 parent 7264566 commit e66ddcf

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/aws-lambda-java-profiler.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on:
44
pull_request:
55
branches: [ '*' ]
66
paths:
7-
- 'aws-lambda-java-profiler/**'
7+
- 'experimental/aws-lambda-java-profiler/**'
88
- '.github/workflows/aws-lambda-java-profiler.yml'
99
push:
1010
branches: ['*']
1111
paths:
12-
- 'aws-lambda-java-profiler/**'
12+
- 'experimental/aws-lambda-java-profiler/**'
1313
- '.github/workflows/aws-lambda-java-profiler.yml'
1414

1515
jobs:

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

+1
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

+1-1
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)