Added Reactor Netty Http

This commit is contained in:
Marcin Grzejszczak
2020-08-05 14:34:43 +02:00
parent 0b5dec8cd7
commit 466749588e
3 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@
</dependency>
<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty</artifactId>
<artifactId>reactor-netty-http</artifactId>
<optional>true</optional>
</dependency>
<dependency>

View File

@@ -81,7 +81,7 @@ public class Issue502Tests {
then(response).isEqualTo("foo");
// retries
then(this.spans).hasSize(1);
then(this.spans.get(0).tags().get("http.path")).isEqualTo("");
then(this.spans.get(0).tags().get("http.path")).isEqualTo("/");
}
}

View File

@@ -92,7 +92,7 @@
</dependency>
<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty</artifactId>
<artifactId>reactor-netty-http</artifactId>
<optional>true</optional>
</dependency>
<dependency>