Skip to content

Commit 53acc01

Browse files
authored
fix: UDP Exporter Sample App not starting via Gradle (#1171)
*Issue #, if available:* - Sample app for UDP Exporter is failing via `gradle build`: https://github.com/aws-observability/aws-otel-java-instrumentation/actions/runs/17167485805/job/48710900750 *Description of changes:* - UDP e2e test uses `gradle` from GH Action env, which isn't stable. Use `gradlew` that exists in this repo instead. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 9b5c640 commit 53acc01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/udp-exporter-e2e-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
run: |
5252
export XRAY_UDP_SPAN_EXPORTER_VERSION=${{ steps.build-udp-exporter.outputs.xrayUdpSpanExporterVersion }}
5353
echo "Running Sample App against X-Ray UDP Span Exporter version: $XRAY_UDP_SPAN_EXPORTER_VERSION"
54-
gradle build
55-
gradle bootRun &
54+
../../gradlew build
55+
../../gradlew bootRun &
5656
sleep 5
5757
5858
- name: Call Sample App Endpoint

0 commit comments

Comments
 (0)