Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ERR_INSUFFICIENT_RESOURCES after upgrading to Chrome version 76.0.3809.100

after upgrading to Chrome 76.0.3809.100 we are facing an issue where a lot of a JS files are not loaded to ERR_INSUFFICIENT_RESOURCES.

Our app is developed in ASP NET MVC and AngularJS and we have like ~2000 JS files loaded in a bundling (in production, those 2000 files are bundled and minimized with another tool to only 1 file, so the problem only appears when developing).

Our bundling renders like this:

@Scripts.RenderFormat("<script type=\"text/javascript\" src=\"{0}\"></script>", "~/bundles/app_bundled_mvc");

After upgrading Chrome version, when opening the Chrome Dev Tools we see this:

HTML Result: HTML Start HTML End

Console Errors

Network Tab

We also have tried to load the resources in different bundles without success.

Any help or suggestion would be appreciated.

like image 430
Marc Bernal Avatar asked Aug 13 '19 13:08

Marc Bernal


Video Answer


1 Answers

I had a similar issue and it turned out that my physical memory (at >95% utilization at the time ) was being maxed up when opening the page. After closing some unused programs and freeing up physical memory, the issue went away.

Chrome version Version 77.0.3865.90 (Official Build) (64-bit)

Therefore, I'd recommend closing unused programs to free up some memory for Chrome.

like image 111
Deezzle LuBimkii Avatar answered Oct 26 '22 17:10

Deezzle LuBimkii