Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit a8e16d4

Browse files
committed
remove async
1 parent c3e4078 commit a8e16d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Titanium.Web.Proxy/Network/TcpConnectionManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ internal static async Task<TcpConnection> GetClient(string hostname, int port, b
8383

8484
if (cachedConnections == null || cachedConnections.Count() <= 2)
8585
{
86-
await CreateClient(hostname, port, isHttps, version)
86+
var task = CreateClient(hostname, port, isHttps, version)
8787
.ContinueWith(async (x) => { if (x.Status == TaskStatus.RanToCompletion) await ReleaseClient(x.Result); });
8888
}
8989

0 commit comments

Comments
 (0)