ZF-7984: Sub-second timeouts are not supported
Description
Sub one second timeouts are not supported, even in the case where the underlying adapter supports them.
For example, the stream_set_timeout() in Zend_Http_Client_Adapter_Socket's connect() method is called with:
stream_set_timeout($this->socket, (int) $this->config['timeout'])
Hence, the timeout value is cast to an integer even though stream_set_timeout itself supports sub-second timeouts with the $microseconds argument.
Comments
Posted by Rob Allen (rob) on 2012-11-20T20:53:10.000+0000
Bulk change of all issues last updated before 1st January 2010 as "Won't Fix".
Feel free to re-open and provide a patch if you want to fix this issue.