flutter / devtools

Performance tools for Flutter
https://flutter.dev/docs/development/tools/devtools/
BSD 3-Clause "New" or "Revised" License
1.59k stars 326 forks source link

Network requests having response missing intermittently #8253

Open hrajwade96 opened 2 months ago

hrajwade96 commented 2 months ago

When trying to download har, the network requests are having response body missing sometimes, I debugged this in master branch, the filteredData (which is the source while generating har) itself has response body missing hence it doesn't get propagated. @kenzieschmoll request your guidance on this.

kenzieschmoll commented 2 months ago

Is it possible that the responses have not come in yet? Or that they never came in for the specific requests the responses are missing for?

hrajwade96 commented 1 month ago

Is it possible that the responses have not come in yet? Or that they never came in for the specific requests the responses are missing for?

After checking I found that full data was missing for some requests. Earlier I expected 'filteredData' to have all the updated and filtered data.

I have raised a pr for fixing this - https://github.com/flutter/devtools/pull/8333