Repository: reef Updated Branches: refs/heads/master 1ec1119f4 -> 515e6ee9b
[REEF-1588] Fix CoreCLR issues in Org.Apache.REEF.Client This replaces `WebRequestHandler` with `HTTPClientHandler` JIRA: [REEF-1588](https://issues.apache.org/jira/browse/REEF-1588) Pull request: This closes #1350 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/515e6ee9 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/515e6ee9 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/515e6ee9 Branch: refs/heads/master Commit: 515e6ee9bffffd1194b01e02224025bf6d7202f6 Parents: 1ec1119 Author: roganc <[email protected]> Authored: Wed Aug 2 13:49:40 2017 -0700 Committer: Markus Weimer <[email protected]> Committed: Mon Aug 7 09:09:56 2017 -0700 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.Client/YARN/RESTClient/HttpClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/515e6ee9/lang/cs/Org.Apache.REEF.Client/YARN/RESTClient/HttpClient.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Client/YARN/RESTClient/HttpClient.cs b/lang/cs/Org.Apache.REEF.Client/YARN/RESTClient/HttpClient.cs index 311b57b..be02d7d 100644 --- a/lang/cs/Org.Apache.REEF.Client/YARN/RESTClient/HttpClient.cs +++ b/lang/cs/Org.Apache.REEF.Client/YARN/RESTClient/HttpClient.cs @@ -33,7 +33,7 @@ namespace Org.Apache.REEF.Client.YARN.RestClient private HttpClient(IYarnRestClientCredential yarnRestClientCredential) { _httpClient = new System.Net.Http.HttpClient( - new HttpClientRetryHandler(new WebRequestHandler { Credentials = yarnRestClientCredential.Credentials }), + new HttpClientRetryHandler(new HttpClientHandler { Credentials = yarnRestClientCredential.Credentials }), disposeHandler: false); }
