WIP: 103268-job-task-progress #104185

Draft
Nitin-Rawat-1 wants to merge 19 commits from Nitin-Rawat-1/flamenco:103268-job-task-progress into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 18 additions and 0 deletions
Showing only changes of commit 2053b25ecf - Show all commits

View File

@ -2153,6 +2153,24 @@ components:
"activity": { type: string }
required: [id, job_id, name, updated, status, activity]
SocketIOTaskProgressUpdate:
type: object
description: >
Task progress, sent to a SocketIO room when progress of a task changes.
properties:
"id":
type: string
format: uuid
description: UUID of the Task
"job_id": { type: string, format: uuid }
"progress":
type: integer
minimum: 0
maximum: 100
description: >
Indicates the percentage of the task that's been completed.
required: [id, job_id, progress]
SocketIOTaskLogUpdate:
type: object
description: >