If api.wp.org request blocks, make sure another requests isn't scheduled for 12 hours. see #8347

git-svn-id: http://svn.automattic.com/wordpress/trunk@9901 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2008-11-26 11:48:05 +00:00
parent 9ec79a2dc6
commit f91d22aadb
2 changed files with 14 additions and 1 deletions

View File

@@ -786,6 +786,7 @@ class WP_Http_Streams {
stream_set_timeout($handle, $r['timeout'] );
if ( ! $r['blocking'] ) {
stream_set_blocking($handle, 0);
fclose($handle);
return array( 'headers' => array(), 'body' => '', 'response' => array('code', 'message') );
}