Insufficient Resources Error

Hi All,

I’m getting the following error in my console and it says I should reach out. Any idea what I need to do to fix it?

Could you check the detailed error in the Network tab of the browser?

It looks like I may have some logic that is stuck on a loop. I’ll look into that unless you see something else.

When you click on a failing request, it should show the response you got from the server (if the request was actually sent out)

Thanks Mark- Have been down the rabbit hole and back on this one. I’m still struggling to find which part of my page is driving all of the bad requests. Do you have any suggestions on how to decode the error messages?

https://api.backendless.com/4921FD25-45AC-9E96-FF7F-865537F72100/6B4F94DC-59DA-42A3-AC9D-C7974DD0B601/data/Fulfillment_Contract/find

So far, I know that the issue arrives from a data pull from the Fulfillment_Contract table (I have quite a few of those in this page). I thought that the strings were objectIds in that table, but that didn’t end up being the case.
https://api.backendless.com/4921FD25-45AC-9E96-FF7F-865537F72100/6B4F94DC-59DA-42A3-AC9D-C7974DD0B601/data/Fulfillment_Contract/find

My suggestion is to add extra logging (the print block) and see what’s going on under the hood by inspecting the log messages.

Hello @Aaron_Alpeter

Could you check the RegisteredEstimator page, baseOrderInput component, Placeholder Logic handler?

We could see here a request in the logic handler. That means we run it on every render of this component.

Here you could find information about how data binding and rendering works

https://backendless.com/docs/uibuilder/ui_data_binding.html
https://backendless.com/docs/uibuilder/ui_rendering.html

As for the error that you get - it is caused by your browser. When you run a lot of simultaneous and similar requests from one client, the browser starts blocking them on your side.

Regards, Dima.

Thanks! I was able to sort it out!

Hi Dima,

Sorry to reopen this, but I’m now having the same issue on a different component on my page. It looks like it is coming from the AvgRCCostLBSText component in the Estimator page.

I have added in print blocks with each step and retested the Where Clause in Rest Console and everything checks out individually. The odd part is that I have another component AvgRCCostOzText with the exact same Content Logic (literal copy & paste) that does not have the same error.

Any suggestions for where I should be looking?