one too many parses

This commit is contained in:
Rob Herley 2023-12-06 23:51:16 +00:00 committed by GitHub
parent 715b1acc05
commit 8c317a0e59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,11 +80,10 @@ class ArtifactHttpClient implements Rpc {
try {
const response = await operation()
const statusCode = response.message.statusCode
const raw = await response.readBody()
const body = JSON.parse(raw)
const body = await response.readBody()
debug(`[Response] - ${response.message.statusCode}`)
debug(`Headers: ${JSON.stringify(response.message.headers, null, 2)}`)
debug(`Body: ${JSON.stringify(body, null, 2)}`)
debug(`Body: ${body}`)
if (this.isSuccessStatusCode(statusCode)) {
return {response, body}