Fix http pool usage to prevent rate limit error

This commit is contained in:
Zed 2021-07-18 03:36:27 +02:00
parent e183a9c789
commit df9f90f99c
1 changed files with 5 additions and 4 deletions

View File

@ -41,9 +41,10 @@ proc fetch*(url: Uri; oldApi=false): Future[JsonNode] {.async.} =
let headers = genHeaders(token)
try:
let
resp = pool.use(headers): await c.get($url)
body = await resp.body
var resp: AsyncResponse
let body = pool.use(headers):
resp = await c.get($url)
await resp.body
if body.startsWith('{') or body.startsWith('['):
result = parseJson(body)
@ -65,6 +66,6 @@ proc fetch*(url: Uri; oldApi=false): Future[JsonNode] {.async.} =
raise rateLimitError()
except Exception as e:
echo "error: ", e.msg, ", token: ", token[], ", url: ", url
if "length" notin e.msg:
if "length" notin e.msg and "descriptor" notin e.msg:
release(token, true)
raise rateLimitError()