Applicable to:
- SolusVM
Symptoms
There is no response for API call from SolusVM Master node even though the action that was triggered by the API call (for example VPS removal) was successfully completed.
Cause
Short value for cURL timeout in the script that sends API call.
Resolution
Increate cURL timeout in the script - for example from 20 seconds:
CONFIG_TEXT: curl_setopt($ch, CURLOPT_TIMEOUT, 20);
to 60 seconds
CONFIG_TEXT: curl_setopt($ch, CURLOPT_TIMEOUT, 60);
Comments
0 commentsPlease sign in to leave a comment.