Skip to content
Snippets Groups Projects
Commit ae14dfdd authored by Daniel Nemergut's avatar Daniel Nemergut
Browse files

Raising instead of returning error responses to rollback potentially partially...

Raising instead of returning error responses to rollback potentially partially committed transactions
parent 048310ac
No related branches found
No related tags found
2 merge requests!1706merge 2.8.4 to main,!1670WS-1405 CASA matrix service
Pipeline #16060 passed
......@@ -136,7 +136,7 @@ def add_casa_version(request: Request) -> Response:
if added:
return Response(status_int=http.HTTPStatus.OK, json_body=added)
else:
return HTTPNotFound(detail=f"Matrix version not added")
raise HTTPNotFound(detail=f"Matrix version not added")
@view_config(route_name="update_casa_version", renderer="json")
......@@ -166,7 +166,7 @@ def update_casa_version(request: Request) -> Response:
if updated:
return Response(status_int=http.HTTPStatus.OK, json_body=updated)
else:
return HTTPNotFound(detail=f"Matrix version not updated")
raise HTTPNotFound(detail=f"Matrix version not updated")
@view_config(route_name="delete_casa_version", renderer="json")
......
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