remove async await no longer used

This commit is contained in:
UbitUmarov
2020-07-24 19:24:34 +01:00
parent e08ca7402c
commit 0c716cbd73
3 changed files with 3 additions and 3 deletions

View File

@@ -469,7 +469,7 @@ namespace OSHttpServer
if (m_body != null)
m_body.Dispose();
Sent = true;
await m_context.EndSendResponse(requestID, Connection).ConfigureAwait(false);
m_context.EndSendResponse(requestID, Connection);
}
private int CheckBandwidth(int request, int bytesLimit)