This commit is contained in:
2026-08-06 16:44:28 +08:00
parent 0fb20777f7
commit 70f2261d68
6 changed files with 22 additions and 16 deletions
+2 -2
View File
@@ -224,7 +224,7 @@ def api_upscale_submit_remote_simple(self, upscale_task_id: str) -> dict[str, An
api_upscale_poll_remote_simple.apply_async(
args=[upscale_task_id],
countdown=30,
queue="gen_api_upscale",
queue=CeleryQueue.GEN_API_UPSCALE.value,
)
return {"status": "submitted", "provider_task_id": submit_result.task_id}
@@ -350,7 +350,7 @@ def api_upscale_poll_remote_simple(self, upscale_task_id: str) -> dict[str, Any]
api_upscale_poll_remote_simple.apply_async(
args=[upscale_task_id],
countdown=30,
queue="gen_api_upscale",
queue=CeleryQueue.GEN_API_UPSCALE.value,
)
return {"status": "polling"}