If a control or series of controls run in a loop, you may encounter the following error after the 80th control execution:
#UOCM002: A processing error occurred for control entity.
Exceeded max number of nested control point executions
Assure checks for loops in control executions and after an 80 execution loop, it'll trigger that error message.
If looping is your expected behavior, you can override the default limit of 80 executions:
1) If it doesn't exist already, add a file named override.properties into the same location of your IA.properties file. For example, this would be within:
<installation directory>/config/<jvm name>/IA
2) Add the property to override into the override.properties file. For example:
MAX_CP_RUNDEPTH=100
You can use any number for the new maximum run depth.
3) Run the validate-config-values script from the installation's bin directory. A sample syntax of this script is below:
./validate-config-values.sh -c IA IA
4) Run the update-config script from the installation's bin directory. A sample syntax of this script is below:
./update-config.sh -c IA IA
Comments
0 comments
Please sign in to leave a comment.