summaryrefslogtreecommitdiff
path: root/src/server/rz_req_handling.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/rz_req_handling.py')
-rw-r--r--src/server/rz_req_handling.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/rz_req_handling.py b/src/server/rz_req_handling.py
index 106d249d..b39d7c0c 100644
--- a/src/server/rz_req_handling.py
+++ b/src/server/rz_req_handling.py
@@ -72,7 +72,7 @@ def common_rest_req_exception_handler(rest_API_endpoint):
return common_resp_handle__client_error(error=e) # currently blame client for all DNFs
except RZDoc_Exception__not_found as e:
log.exception(e)
- return common_resp_handle__client_error(error=e) # currently blame client for all DNFs
+ return common_resp_handle__client_error(data={'rzdoc_name': e.rzdoc_name}, error=e) # currently blame client for all DNFs
except Exception as e:
log.exception(e)
return common_resp_handle__server_error(error=e)