From ddbfd44125041192aa99d47a8b3e79dc94955233 Mon Sep 17 00:00:00 2001 From: liuyuedeyv <286758941@qq.com> Date: Sat, 30 Jun 2018 02:02:35 +0800 Subject: [PATCH] Update HttpClientBuilder.cs (#442) if get the httpclient from cache,when the save method called ,it can not to save the right httpclient; --- src/Ocelot/Requester/HttpClientBuilder.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Ocelot/Requester/HttpClientBuilder.cs b/src/Ocelot/Requester/HttpClientBuilder.cs index 0cd810cf..748c60c4 100644 --- a/src/Ocelot/Requester/HttpClientBuilder.cs +++ b/src/Ocelot/Requester/HttpClientBuilder.cs @@ -40,6 +40,7 @@ namespace Ocelot.Requester if (httpClient != null) { + _client = httpClient; return httpClient; }