Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/issue-334' into add-ml
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Mar 14, 2023
2 parents 822cfd8 + 86f13b0 commit 7944475
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `is_nodata`: Clarified that `NaN` can be considered as a no-data value only if it is explicitly specified as no-data value. [#361](https://github.com/Open-EO/openeo-processes/issues/361)
- `rename_labels`: Clarified that the `LabelsNotEnumerated` exception is thrown if `source` is empty instead of if `target` is empty. [#321](https://github.com/Open-EO/openeo-processes/issues/321)
- `round`: Clarify that the rounding for ties applies not only for integers. [#326](https://github.com/Open-EO/openeo-processes/issues/326)
- `save_result`: Clarified that the process always returns `true` (and otherwise throws). [#334](https://github.com/Open-EO/openeo-processes/issues/334)

## [1.2.0] - 2021-12-13

Expand Down
7 changes: 4 additions & 3 deletions proposals/save_ml_model.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@
}
],
"returns": {
"description": "Returns `false` if the process failed to store the model, `true` otherwise.",
"description": "Always returns `true` as in case of an error an exception is thrown which aborts the execution of the process.",
"schema": {
"type": "boolean"
"type": "boolean",
"const": true
}
},
"links": [
Expand All @@ -41,4 +42,4 @@
"rel": "about"
}
]
}
}
5 changes: 3 additions & 2 deletions save_result.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@
}
],
"returns": {
"description": "Returns `false` if the process failed to make the data available, `true` otherwise.",
"description": "Always returns `true` as in case of an error an exception is thrown which aborts the execution of the process.",
"schema": {
"type": "boolean"
"type": "boolean",
"const": true
}
},
"exceptions": {
Expand Down

0 comments on commit 7944475

Please sign in to comment.