This commit is contained in:
flywind
2021-04-25 01:33:29 +08:00
committed by GitHub
parent b667e288e2
commit 6e8f0f8cfc
6 changed files with 6 additions and 6 deletions

View File

@@ -751,7 +751,7 @@ proc parseBody(client: HttpClient | AsyncHttpClient, headers: HttpHeaders,
httpError("Got disconnected while trying to read body.")
if recvLen != length:
httpError("Received length doesn't match expected length. Wanted " &
$length & " got " & $recvLen)
$length & " got: " & $recvLen)
else:
# (http://tools.ietf.org/html/rfc2616#section-4.4) NR.4 TODO

View File

@@ -321,7 +321,7 @@ else:
proc verifySelectParams(timeout: int) =
# Timeout of -1 means: wait forever
# Anything higher is the time to wait in milliseconds.
doAssert(timeout >= -1, "Cannot select with a negative value, got " & $timeout)
doAssert(timeout >= -1, "Cannot select with a negative value, got: " & $timeout)
when defined(linux) and not defined(emscripten):
include ioselects/ioselectors_epoll