Check result status, not json object.

This commit is contained in:
Marc-Andre Ferland 2022-10-20 20:36:45 -04:00
parent 090dfff730
commit 807e9573fb

View File

@ -518,7 +518,7 @@ async function doMakeImage(task) {
})
renderRequest = await res.json()
// status_code 503, already a task running.
} while (renderRequest.status_code === 503 && await asyncDelay(RETRY_DELAY_IF_SERVER_IS_BUSY))
} while (res.status === 503 && await asyncDelay(RETRY_DELAY_IF_SERVER_IS_BUSY))
if (typeof renderRequest?.stream !== 'string') {
console.log('Endpoint response: ', renderRequest)