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
Describe your environment.
Django = "4.1"
opencensus-ext-django = "0.7.6"
Steps to reproduce.
Run a normal Django application
What is the expected behavior?
Django works normally and opencensus middleware works normally
What is the actual behavior?
Middleware fails with the following error, causing the Django app to not work 'OpencensusMiddleware' object has no attribute '_is_coroutine'
Additional context.
The init method does not call super() and therefore the middleware fails. please add a call to super()
The text was updated successfully, but these errors were encountered:
Describe your environment.
Django = "4.1"
opencensus-ext-django = "0.7.6"
Steps to reproduce.
Run a normal Django application
What is the expected behavior?
Django works normally and opencensus middleware works normally
What is the actual behavior?
Middleware fails with the following error, causing the Django app to not work
'OpencensusMiddleware' object has no attribute '_is_coroutine'
Additional context.
The init method does not call super() and therefore the middleware fails. please add a call to super()
The text was updated successfully, but these errors were encountered: