Marc Bernal
Marc Bernal

Reputation: 109

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.

Upvotes: 11

Views: 9883

Answers (2)

Deezzle LuBimkii
Deezzle LuBimkii

Reputation: 67

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.

Upvotes: 2

Marc Bernal
Marc Bernal

Reputation: 109

The last Chrome update from August 26 (76.0.3809.132) fixes the issue.

Upvotes: -1

Related Questions