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
Hi, as from title seems unable to read the original request in response.
I think the problem is due to this part of the code in response.py
return cls( id=data.get("id", ""), original_request=data.get("original-request", ""), response_time=data.get("responseTime"), timings=data.get("timings"), header=header_list if header_list else header, cookie=cookie_list if cookie_list else None, body=data.get("body"), status=data.get("status", ""), code=data.get("code", 0), )
where in my collection it should be "originalRequest".
Moreover even fixing the string name the conversione from string to Request is not performed even if declared.
The text was updated successfully, but these errors were encountered:
Hi, as from title seems unable to read the original request in response.
I think the problem is due to this part of the code in response.py
return cls( id=data.get("id", ""), original_request=data.get("original-request", ""), response_time=data.get("responseTime"), timings=data.get("timings"), header=header_list if header_list else header, cookie=cookie_list if cookie_list else None, body=data.get("body"), status=data.get("status", ""), code=data.get("code", 0), )
where in my collection it should be "originalRequest".
Moreover even fixing the string name the conversione from string to Request is not performed even if declared.
The text was updated successfully, but these errors were encountered: