From ffa99f202b6ca675cffae08bd37171fff720b5e3 Mon Sep 17 00:00:00 2001 From: "promptless[bot]" Date: Tue, 19 May 2026 14:25:00 +0000 Subject: [PATCH] Add IN_PROGRESS job state to documentation Add the IN_PROGRESS status to the list of request job states. This status indicates that a job has been picked up by a worker and is currently being processed. --- serverless/endpoints/job-states.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/serverless/endpoints/job-states.mdx b/serverless/endpoints/job-states.mdx index 64c18a0c..1372769b 100644 --- a/serverless/endpoints/job-states.mdx +++ b/serverless/endpoints/job-states.mdx @@ -12,6 +12,7 @@ Understanding job states and metrics is essential for effectively managing your Understanding job states helps you track the progress of individual and identify where potential issues might occur in your workflow. * `IN_QUEUE`: The job is waiting in the endpoint queue for an available worker to process it. +* `IN_PROGRESS`: The job has been picked up by a worker and is currently being processed. The request is no longer waiting in the queue. * `RUNNING`: A worker has picked up the job and is actively processing it. * `COMPLETED`: The job has finished processing successfully and returned a result. * `FAILED`: The job encountered an error during execution and did not complete successfully.