function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Chloé CanellaChloé Canella 

Apex warning on process

Hello,

I created a new workflow, but everytime it runs, I get an Apex warning.

The apex warning is :
//
Operation: /aura

By user/organization: 005D0000001VpRg/00D200000000EiN

Caused the following Apex resource warnings:

Number of future calls: 33 out of 50

(these emails can be disabled from the user detail page for this user)
//
 

 

What does it mean? And what can I do to fix this? 

 

The process runs on accounts. 

Boss CoffeeBoss Coffee
It's letting you know that there are a lot of future method calls (custom code) in the background when the workflow runs.
33 future method calls out of the 50 allotted.

If you can, you could examine the custom code running in the background to make sure each future method call is intentional and necessary.