From 04cc2f6473e8439929ba8448f038058d5e20ba86 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Wed, 12 Jul 2017 14:38:12 +0200 Subject: [PATCH] increase poll timeout as false positives mitigation --- ext/mysqli/tests/mysqli_reap_async_query.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mysqli/tests/mysqli_reap_async_query.phpt b/ext/mysqli/tests/mysqli_reap_async_query.phpt index e3858e61722..3f3bce32926 100644 --- a/ext/mysqli/tests/mysqli_reap_async_query.phpt +++ b/ext/mysqli/tests/mysqli_reap_async_query.phpt @@ -38,7 +38,7 @@ if (!$IS_MYSQLND) function poll_async($offset, $link, $links, $errors, $reject, $exp_ready, $use_oo_syntax) { - if ($exp_ready !== ($tmp = mysqli_poll($links, $errors, $reject, 0, 1000))) + if ($exp_ready !== ($tmp = mysqli_poll($links, $errors, $reject, 0, 2000))) printf("[%03d + 1] There should be %d links ready to read from, %d ready\n", $offset, $exp_ready, $tmp);