diff options
author | Alexander_Kabui | 2024-05-28 17:51:59 +0300 |
---|---|---|
committer | Alexander_Kabui | 2024-08-29 11:50:38 +0300 |
commit | a34e4e2f0f19d2d62bb76eb09e6b156fd8d16b46 (patch) | |
tree | e0ca768cd153d3d86c3b38f5e17b42eae87eab3f /gn2/wqflask | |
parent | 0b8f01e9dda1339e22bdcb7759bb0252a4e95d8a (diff) | |
download | genenetwork2-a34e4e2f0f19d2d62bb76eb09e6b156fd8d16b46.tar.gz |
BugFix: return correct status code for generic exceptions handler.
Diffstat (limited to 'gn2/wqflask')
-rw-r--r-- | gn2/wqflask/views.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gn2/wqflask/views.py b/gn2/wqflask/views.py index 215837af..58b092a0 100644 --- a/gn2/wqflask/views.py +++ b/gn2/wqflask/views.py @@ -137,6 +137,7 @@ def handle_generic_exceptions(e): stack={formatted_lines}, error_image=animation, version=current_app.config.get("GN_VERSION"))) + resp.status_code = exc_type.code or 500 resp.set_cookie(err_msg[:32], animation) return resp |