Skip to content

Commit

Permalink
Fix OpenTelemetry REST client operation names
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvavrik committed Mar 23, 2024
1 parent b0993b6 commit 0049ca1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class OpentelemetryReactiveIT {
public void testContextPropagation() {
int pageLimit = 10;
String operationName = "GET /ping/pong";
String[] operations = new String[] { "GET /ping/pong", "GET", "GET /hello" };
String[] operations = new String[] { "GET /ping/pong", "GET /hello", "GET /hello" };

await().atMost(1, TimeUnit.MINUTES).pollInterval(Duration.ofSeconds(1)).untilAsserted(() -> {
whenDoPingPongRequest();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class OpenTelemetryIT {
public void testContextPropagation() {
int pageLimit = 10;
String operationName = "GET /ping/pong";
String[] operations = new String[] { "GET /ping/pong", "GET", "GET /hello" };
String[] operations = new String[] { "GET /ping/pong", "GET /hello", "GET /hello" };

await().atMost(1, TimeUnit.MINUTES).pollInterval(Duration.ofSeconds(1)).untilAsserted(() -> {
whenDoPingPongRequest();
Expand Down

0 comments on commit 0049ca1

Please sign in to comment.