Skip to content
Snippets Groups Projects
Commit 81723959 authored by Nathan Rini's avatar Nathan Rini Committed by Tim Wickberg
Browse files

openapi/dbv0.0.38 - Sync fields for errors to source in openapi.json

Bug 12897
parent 2c71bb88
No related branches found
No related tags found
No related merge requests found
...@@ -124,6 +124,7 @@ documents those changes that are of interest to users and administrators. ...@@ -124,6 +124,7 @@ documents those changes that are of interest to users and administrators.
-- openapi/dbv0.0.38 - Correct tres field in qos list in openapi.json. -- openapi/dbv0.0.38 - Correct tres field in qos list in openapi.json.
-- openapi/dbv0.0.38 - Correct het job details types in jobs in openapi.json -- openapi/dbv0.0.38 - Correct het job details types in jobs in openapi.json
-- openapi/dbv0.0.38 - Correct task type for job steps in openapi.json. -- openapi/dbv0.0.38 - Correct task type for job steps in openapi.json.
-- openapi/dbv0.0.38 - Sync fields for errors to source in openapi.json.
   
* Changes in Slurm 21.08.7 * Changes in Slurm 21.08.7
========================== ==========================
......
...@@ -191,6 +191,9 @@ ...@@ -191,6 +191,9 @@
<td class="tdchange" colspan=2> <td class="tdchange" colspan=2>
<ul> <ul>
<li>.components.schemas."dbv0.0.38_response_association_delete".properties.removed_associations</li> <li>.components.schemas."dbv0.0.38_response_association_delete".properties.removed_associations</li>
<li>.components.schemas."dbv0.0.38_error".properties.error_number</li>
<li>.components.schemas."dbv0.0.38_error".properties.source</li>
<li>.components.schemas."dbv0.0.38_error".properties.description</li>
</ul> </ul>
</td> </td>
</tr> </tr>
......
...@@ -3628,13 +3628,21 @@ ...@@ -3628,13 +3628,21 @@
}, },
"dbv0.0.38_error": { "dbv0.0.38_error": {
"properties": { "properties": {
"errno": { "error_number": {
"description": "Error number", "description": "Slurm internal error number",
"type": "integer" "type": "integer"
}, },
"error": { "error": {
"description": "Error message", "description": "Error message",
"type": "string" "type": "string"
},
"source": {
"description": "Where error occured in the source",
"type": "string"
},
"description": {
"description": "Explaination of cause of error",
"type": "string"
} }
}, },
"type": "object" "type": "object"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment