Skip to content

Commit

Permalink
re-enable opentelemetry-reactive
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo gonzalez granados committed Jun 7, 2022
1 parent c4650bd commit 2d38b9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class OpentelemetryReactiveIT {
public void testContextPropagation() {
int pageLimit = 10;
String operationName = "ping/pong";
String[] operations = new String[] { "ping/pong", "hello", "hello" };
String[] operations = new String[] { "/ping/pong", "/hello", "/hello" };

await().atMost(1, TimeUnit.MINUTES).pollInterval(Duration.ofSeconds(1)).untilAsserted(() -> {
whenDoPingPongRequest();
Expand All @@ -67,7 +67,7 @@ public void whenDoPingPongRequest() {

private void thenRetrieveTraces(int pageLimit, String lookBack, String serviceName, String operationName) {
resp = given().when()
.queryParam("operation", operationName)
.queryParam("operationName", operationName)
.queryParam("lookback", lookBack)
.queryParam("limit", pageLimit)
.queryParam("service", serviceName)
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -497,8 +497,7 @@
<module>monitoring/micrometer-prometheus-kafka-reactive</module>
<module>monitoring/micrometer-prometheus-oidc</module>
<module>monitoring/opentelemetry</module>
<!-- Disabled due to https://github.com/quarkusio/quarkus/issues/23940 -->
<!-- <module>monitoring/opentelemetry-reactive</module>-->
<module>monitoring/opentelemetry-reactive</module>
<module>monitoring/microprofile-opentracing</module>
<module>monitoring/opentracing-reactive-grpc</module>
</modules>
Expand Down

0 comments on commit 2d38b9c

Please sign in to comment.