diff --git a/reana_commons/openapi_specifications/reana_server.json b/reana_commons/openapi_specifications/reana_server.json index d7444d3a..e3500970 100644 --- a/reana_commons/openapi_specifications/reana_server.json +++ b/reana_commons/openapi_specifications/reana_server.json @@ -2637,6 +2637,7 @@ "description": "Request succeeded. Info about a workflow, including the status is returned.", "examples": { "application/json": { + "live_logs_enabled": true, "logs": "", "user": "00000000-0000-0000-0000-000000000000", "workflow_id": "256b25f4-4cfb-4684-b7a8-73872ef455a1", @@ -2645,6 +2646,9 @@ }, "schema": { "properties": { + "live_logs_enabled": { + "type": "boolean" + }, "logs": { "type": "string" }, diff --git a/reana_commons/openapi_specifications/reana_workflow_controller.json b/reana_commons/openapi_specifications/reana_workflow_controller.json index 200aac6f..c9aacec0 100644 --- a/reana_commons/openapi_specifications/reana_workflow_controller.json +++ b/reana_commons/openapi_specifications/reana_workflow_controller.json @@ -687,6 +687,7 @@ "description": "Request succeeded. Info about workflow, including the status is returned.", "examples": { "application/json": { + "live_logs_enabled": false, "logs": "{'workflow_logs': string, 'job_logs': { '256b25f4-4cfb-4684-b7a8-73872ef455a2': string, '256b25f4-4cfb-4684-b7a8-73872ef455a3': string, }, 'engine_specific': object, }", "user": "00000000-0000-0000-0000-000000000000", "workflow_id": "256b25f4-4cfb-4684-b7a8-73872ef455a1", @@ -695,6 +696,9 @@ }, "schema": { "properties": { + "live_logs_enabled": { + "type": "boolean" + }, "logs": { "type": "string" },