Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 39bea05

Browse files
authored
fix(django): Fix error with gunicorn (#385)
1 parent 10aa4de commit 39bea05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

epsagon/modules/django.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def gunicorn_sync_wrapper(wrapped, _instance, args, kwargs):
8888
try:
8989
return wrapped(*args, **kwargs)
9090
except StopIteration:
91-
pass
91+
raise
9292
except Exception as error: # pylint: disable=broad-except
9393
trace_factory.set_error(error, traceback.format_exc())
9494
raise error

0 commit comments

Comments
 (0)