Akka HTTP Error Response entity was not subscribed after 1 second
问题 I am using Akka HTTP cachedHostConnectionPoolHttps pool to send requests as part of Akka Streams Flow: private val requestFlow: Flow[(HttpRequest, HelperClass), Either[Error, String], _] = Http().cachedHostConnectionPoolHttps(BaseUrl).mapAsync(1) { case (Success(HttpResponse(_, _, entity, _)), _) => Unmarshal(entity).to[String].map(response => { Right(response) }) case (Failure(ex), _) => Future(Left(Error(ex))) } For some reason not all request responses are being processed. Some results in