Jackie
Jackie
Explore posts from servers
RRunPod
Created by Jackie on 4/2/2025 in #⚡|serverless
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
16 replies