Closed Jason-Gush closed 3 years ago
e.g., NZ-ORCID-HUB-235
seems to be
for chunk in resp.raw.stream(decode_content=False): call.response += chunk.decode() yield chunk
failing because the chunk isn't reliably complete characters causing unicode decode fails at beginning or end when it hits a half. ?
should it be call.response += chunk call.response = call.response.decode() ??
Or is it that the message was too big? Full size was 721KB and this particular work had ~3000 contributors
fixed
e.g., NZ-ORCID-HUB-235
seems to be
failing because the chunk isn't reliably complete characters causing unicode decode fails at beginning or end when it hits a half. ?
should it be call.response += chunk call.response = call.response.decode() ??