We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 06e28a6 + d72b396 commit d88695eCopy full SHA for d88695e
project/Dependencies.scala
@@ -40,7 +40,11 @@ object Dependencies {
40
41
val cachecontrol = Seq("com.typesafe.play" %% "cachecontrol" % "2.3.2")
42
43
- val asyncHttpClient = Seq("org.asynchttpclient" % "async-http-client" % "2.12.3")
+ 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.13", // ... a newer version ourselves (ahc v3 will drop that dependency)
47
+ )
48
49
val akkaVersion = "2.6.21"
50
0 commit comments