Imported Upstream version 5.14.0.141

Former-commit-id: 3b53584824e57e63d7af009d31bd6efb72155c45
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-06-23 17:06:07 +00:00
parent 53f56bd502
commit f87a49ea3f
40 changed files with 41 additions and 42 deletions

View File

@ -336,7 +336,6 @@ namespace System.Net
// Is there anything in the queue?
var next = group.GetNextOperation ();
Debug ($"{me} no pending operations.");
if (next == null)
return false;
@ -581,9 +580,9 @@ namespace System.Net
public (WebConnection connection, bool created) CreateOrReuseConnection (WebOperation operation, bool force)
{
Scheduler.Debug ($"CREATE OR REUSE: group={ID} OP={operation.ID} force={force}");
Scheduler.Debug ($"CREATE OR REUSE: group={ID} Op={operation.ID} force={force}");
var connection = FindIdleConnection (operation);
Scheduler.Debug ($"CREATE OR REUSE #1: group={ID} OP={operation.ID} force={force} - connection={connection?.ID}");
Scheduler.Debug ($"CREATE OR REUSE #1: group={ID} Op={operation.ID} force={force} - connection={connection?.ID}");
if (connection != null)
return (connection, false);