We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent babd3d7 commit 940007aCopy full SHA for 940007a
nanoFramework.System.Net.Http/Http/System.Net._InputNetworkStreamWrapper.cs
@@ -474,7 +474,10 @@ protected override void Dispose(bool disposing)
474
{
475
m_InUse = false;
476
477
- if (!m_isClone)
+ // This has been commented because we are not closing the socket properly when using HttpClient
478
+ // This is causing the socket to remain open and not be released back to the pool
479
+ // This will require more testing to make sure that this does not break anything else
480
+ //if (!m_isClone)
481
482
m_Stream.Close();
483
0 commit comments