Skip to content

Commit 46aa2c3

Browse files
committed
increase the polling period to not to break existing behaviours
1 parent 0c98279 commit 46aa2c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/streams/plain_wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ static size_t php_stdiop_read(php_stream *stream, char *buf, size_t count TSRMLS
367367
if (0 == avail_read) {
368368
usleep(100000);
369369
}
370-
} while (0 == avail_read && retry++ < 180);
370+
} while (0 == avail_read && retry++ < 320);
371371

372372
/* Reduce the required data amount to what is available, otherwise read()
373373
will block.*/

0 commit comments

Comments
 (0)