我正在尝试向 URL 发送 GET 请求。
val pipeline: HttpRequest => Future[HttpResponse] = (
sendReceive
)
val result = Await.result(pipeline(Get(url)), DEFAULT_TIMEOUT)
一旦我得到以下响应,之后我们的客户就不会发送任何以下请求。
[WARN] - s.can.client.HttpClientConnection - Configured connecting timeout of 10 seconds expired, stopping
我必须重新启动服务器才能再次开始发送请求。