Symptoms
Attempting to configure and deploy an SSL Orchestrator configuration may result in a configuration processor timeout error.
Impact
The operation fails, resulting in a configuration processor timeout error. The BIG-IP administrator cannot configure and deploy an SSL Orchestrator configuration.
Conditions
When the TMOS control plane is taking a relatively high amount of CPU processing due to intense REST framework management workflows, any attempt to configure and deploy an SSL Orchestrator configuration using the guided configuration user interface, might take longer than the default 30 seconds timeout.
Workaround
1. Edit the /var/config/rest/iapps/f5-iappslx-ssl-orchestrator/nodejs/gc/orchestratorConfigProcessor.js file:
vi /var/config/rest/iapps/f5-iappslx-ssl-orchestrator/nodejs/gc/orchestratorConfigProcessor.js
2. Locate the var _createComponentBlock = function(...) and locate the following line inside the function body (line ~1290):
requestBody.state = "BINDING";
3. Add the following after the 'requestBody.state' line:
requestBody.configProcessorTimeoutSeconds = 120;
4. Save the edited file.
5. Restart the restnoded daemon:
bigstart restart restnoded