You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running multiple soap requests with setMulti(true), CPU load is 100%. This behavior shows especially when endpoints work slowly. This happens in the lines:
do {
$mrc = curl_multi_exec($mh, $active);
} while ($mrc === CURLM_CALL_MULTI_PERFORM || $active);
Possible solution is to call usleep or to call curl_multi_select in the loop.
Hello.
When running multiple soap requests with setMulti(true), CPU load is 100%. This behavior shows especially when endpoints work slowly. This happens in the lines:
Possible solution is to call usleep or to call curl_multi_select in the loop.
OS: Debian 10
PHP version: 7.2.34
CURL version: 7.64.0
The text was updated successfully, but these errors were encountered: