From bc684d0f94e30267b8aee3c5fd637200d8d988c1 Mon Sep 17 00:00:00 2001 From: Michael Maxwell Date: Mon, 27 Jun 2022 10:55:07 -0700 Subject: [PATCH] loadgenerator service fix bug related to protobuf (#173) * Update probe version * Windows-ify paths * undo health probe version updates * bug: PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python --- README.md | 10 ++++++++++ docker-compose.yml | 1 + 2 files changed, 11 insertions(+) diff --git a/README.md b/README.md index e36046139f..0a89aa16f5 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,16 @@ git clone https://github.com/open-telemetry/opentelemetry-demo-webstore.git cd opentelemetry-demo-webstore/ ``` +### Gradle Update [Windows Only] + +- Navigate to the Java Ad Service folder to install and update Gradle: + +```shell +cd .\src\adservice\ +.\gradlew installDist +.\gradlew wrapper --gradle-version 7.4.2 +``` + ### Run Docker Compose - Start the demo (It can take ~20min the first time the command is executed as diff --git a/docker-compose.yml b/docker-compose.yml index 244326c746..9d61ce707b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -251,6 +251,7 @@ services: - USERS - OTEL_EXPORTER_OTLP_TRACES_ENDPOINT - OTEL_RESOURCE_ATTRIBUTES=service.name=loadgenerator + - PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python depends_on: - frontend