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
If I change the TransferTimeout value for a request with a custom value, for example:
$request->setTransferTimeout(5);
there will be still TimeoutExceptions with (default timeout) message:
Amp\Http\Client\TimeoutException: Allowed transfer timeout exceeded, took longer than 10 s in ...
I tried changes on InactivityTimeout, too. This seems to be working correctly: $request->setInactivityTimeout(4);
produced error messages Amp\Http\Client\TimeoutException: Allowed inactivity timeout exceeded, took longer than 4 s in ...
The text was updated successfully, but these errors were encountered:
If I change the TransferTimeout value for a request with a custom value, for example:
$request->setTransferTimeout(5);
there will be still TimeoutExceptions with (default timeout) message:
Amp\Http\Client\TimeoutException: Allowed transfer timeout exceeded, took longer than 10 s in ...
I tried changes on InactivityTimeout, too. This seems to be working correctly:
$request->setInactivityTimeout(4);
produced error messages
Amp\Http\Client\TimeoutException: Allowed inactivity timeout exceeded, took longer than 4 s in ...
The text was updated successfully, but these errors were encountered: