You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sentry actually indicates the error/exception being raised when exiting the contextmanager:
itunesiap/environment.pyin__exit__atline42self._ctx_id=len(self._stack)
self.push()
returnselfdef__exit__(self, exc_type, exc_value, tb):
self._stack.pop(self._ctx_id) # this line
Any clues on what might be happening?
The text was updated successfully, but these errors were encountered:
Are you using multi-threaded or any async logics? itunesiap's context manager implementation is not safe for async jobs. env param will help your problem. (You need recent version of itunesiap)
I'm experiencing a similar IndexError in one of my api views when using
itunesiap.env.sandbox
context manager:Sentry actually indicates the error/exception being raised when exiting the contextmanager:
Any clues on what might be happening?
The text was updated successfully, but these errors were encountered: