mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
increase the polling period to not to break existing behaviours
This commit is contained in:
parent
0c982798e0
commit
46aa2c396b
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ static size_t php_stdiop_read(php_stream *stream, char *buf, size_t count TSRMLS
|
|||
if (0 == avail_read) {
|
||||
usleep(100000);
|
||||
}
|
||||
} while (0 == avail_read && retry++ < 180);
|
||||
} while (0 == avail_read && retry++ < 320);
|
||||
|
||||
/* Reduce the required data amount to what is available, otherwise read()
|
||||
will block.*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue