We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eacd769 commit 4705c81Copy full SHA for 4705c81
services/web/server/src/simcore_service_webserver/exception_handling/_base.py
@@ -109,8 +109,8 @@ async def __aexit__(
109
if (
110
exc_value is not None
111
and exc_type is not None
112
- and issubclass(exc_type, Exception)
113
and isinstance(exc_value, Exception)
+ and issubclass(exc_type, Exception)
114
and (exc_handler := self._get_exc_handler_or_none(exc_type, exc_value))
115
):
116
self._response = await exc_handler(
0 commit comments