Does "/runsync" return IN_PROGRESS if it doesn't complete with 2 minutes?
async with aiohttp.ClientSession() as http_session: async with http_session.post(url, headers=headers, json=data) as response: data = await response.json()if data["status"] == "FAILED": raise Exception("Aligning failed")data["output"]
async with aiohttp.ClientSession() as http_session: async with http_session.post(url, headers=headers, json=data) as response: data = await response.json()if data["status"] == "FAILED": raise Exception("Aligning failed")data["output"]
i expect data["status"] to either be failed or success but why does it occasionally do in_progress? I am using the /runsync endpoint
Continue the conversation
Join the Discord to ask follow-up questions and connect with the community
R
Runpod
We're a community of enthusiasts, engineers, and enterprises, all sharing insights on AI, Machine Learning and GPUs!