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
Django (StreamingHttpResponse) and other frameworks support streaming HTTP responses. Currently our middleware-based instrumentation will not capture all the time sent streaming the response out, but instead prematurely close the TrackedRequest.
To correctly capture such responses we'd want to detect them and change behaviour to only close the TrackedRequest once their iteration has completed.
The text was updated successfully, but these errors were encountered:
Django (
StreamingHttpResponse
) and other frameworks support streaming HTTP responses. Currently our middleware-based instrumentation will not capture all the time sent streaming the response out, but instead prematurely close theTrackedRequest
.To correctly capture such responses we'd want to detect them and change behaviour to only close the
TrackedRequest
once their iteration has completed.The text was updated successfully, but these errors were encountered: