1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

/prompt endpoint error is now in json format.

This commit is contained in:
comfyanonymous
2023-05-14 01:30:58 -04:00
parent 3a1f47764d
commit e7b9d2c02c
3 changed files with 5 additions and 6 deletions

View File

@@ -323,12 +323,11 @@ class PromptServer():
self.prompt_queue.put((number, prompt_id, prompt, extra_data, valid[2]))
return web.json_response({"prompt_id": prompt_id})
else:
resp_code = 400
out_string = valid[1]
print("invalid prompt:", valid[1])
return web.json_response({"error": valid[1]}, status=400)
else:
return web.json_response({"error": "no prompt"}, status=400)
return web.Response(body=out_string, status=resp_code)
@routes.post("/queue")
async def post_queue(request):
json_data = await request.json()