aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/core
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2014-03-18 16:50:04 +0100
committerMichał Gołębiowski <m.goleb@gmail.com>2014-03-18 16:50:55 +0100
commit7f5a0df20cc11df0cd3ceef9c296f37a39b73341 (patch)
treec6cb62fab9c1d6ecdd3b79f003dea81aabd84042 /test/data/core
parentbe565d1cdbdcb66e42411a2d7aa7e89b1fd66c1f (diff)
downloadjquery-7f5a0df20cc11df0cd3ceef9c296f37a39b73341.tar.gz
jquery-7f5a0df20cc11df0cd3ceef9c296f37a39b73341.zip
Core: Change the sleep time in dont_return.php to a sane value
PHP sleep function accepts time in seconds, not milliseconds; the previous value was starving the PHP FPM process pool. (cherry-picked from b5074944b0b27f50ffe2ca9f96348b8d0cd5c82c)
Diffstat (limited to 'test/data/core')
-rw-r--r--test/data/core/dont_return.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/core/dont_return.php b/test/data/core/dont_return.php
index 4168cb3f7..45565b6e7 100644
--- a/test/data/core/dont_return.php
+++ b/test/data/core/dont_return.php
@@ -1,3 +1,3 @@
<?php
-sleep(100000);
+sleep(100);
?>