Skip to content

Commit e6c7c48

Browse files
authored
Merge pull request #866 from mkurz/netty-reactive-streams-latest
Use latest netty-reactive-streams version, ahc comes with outdated one
2 parents e58065a + d5da1fb commit e6c7c48

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

project/Dependencies.scala

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ object Dependencies {
4040

4141
val cachecontrol = Seq("org.playframework" %% "cachecontrol" % "3.0.1")
4242

43-
val asyncHttpClient = Seq("org.asynchttpclient" % "async-http-client" % "2.12.3")
43+
val asyncHttpClient = Seq(
44+
("org.asynchttpclient" % "async-http-client" % "2.12.3") // 2.12.x comes with outdated netty-reactive-streams, so we ...
45+
.exclude("com.typesafe.netty", "netty-reactive-streams"), // ... exclude it and pull in ...
46+
"com.typesafe.netty" % "netty-reactive-streams" % "2.0.12", // ... a newer version ourselves (ahc v3 will drop that dependency)
47+
)
4448

4549
val pekkoVersion = "1.0.3"
4650

0 commit comments

Comments
 (0)