这是我的代码
val connectionFlow: Flow[HttpRequest, HttpResponse, Future[Http.OutgoingConnection]] = Http().outgoingConnectionHttps(host = "https://www.google.co.th/?gws_rd=ssl")
val result = Source.single(HttpRequest(uri = url, method = HttpMethods.GET))
.via(connectionFlow)
.runWith(Sink.headOption)
我收到错误
java.lang.NoSuchMethodError: akka.stream.scaladsl.TLS$.apply$default$4()Lakka/stream/TLSClosing
如何修复