Skip to content

Commit

Permalink
openapi: add inactivity period to info endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
giuseppe-steduto committed Jun 30, 2023
1 parent 6682140 commit 2a61fff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Version 0.9.3 (UNRELEASED)

- Adds OpenAPI specification support for ``prune_workspace`` endpoint that allows to delete files that are neither inputs nor outputs from the workspace.
- Adds support for ``tests.files`` in ``reana.yaml`` allowing to specify Gherking feature files for testing.
- Changes the server OpenAPI specification to add the `maximum_interactive_session_inactivity_period` value to the `info` endpoint.
- Changes email sending to allow configuring authentication and encryption options.
- Fixes the verbs used to describe changes to the status of a workflow in order to avoid incorrect phrases such as ``workflow has been failed``.
- Fixes the loading of Snakemake and CWL workflow specifications when no parameters are specified.
Expand Down
14 changes: 13 additions & 1 deletion reana_commons/openapi_specifications/reana_server.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"description": "Submit workflows to be run on REANA Cloud",
"title": "REANA Server",
"version": "0.9.1a1"
"version": "0.9.1a3"
},
"parameters": {},
"paths": {
Expand Down Expand Up @@ -455,6 +455,18 @@
},
"type": "object"
},
"maximum_interactive_session_inactivity_period": {
"properties": {
"title": {
"type": "string"
},
"value": {
"type": "string",
"x-nullable": true
}
},
"type": "object"
},
"maximum_kubernetes_jobs_timeout": {
"properties": {
"title": {
Expand Down

0 comments on commit 2a61fff

Please sign in to comment.