]> source.dussan.org Git - jquery.git/commitdiff
Core: Change the sleep time in dont_return.php to a sane value
authorMichał Gołębiowski <m.goleb@gmail.com>
Tue, 18 Mar 2014 15:50:04 +0000 (16:50 +0100)
committerMichał Gołębiowski <m.goleb@gmail.com>
Tue, 18 Mar 2014 15:50:55 +0000 (16:50 +0100)
PHP sleep function accepts time in seconds, not milliseconds; the previous
value was starving the PHP FPM process pool.

(cherry-picked from b5074944b0b27f50ffe2ca9f96348b8d0cd5c82c)

test/data/core/dont_return.php

index 4168cb3f71748ea83220cb60623ed93b106485b6..45565b6e726b6b473e4bc2ac5d6e9a8447525c43 100644 (file)
@@ -1,3 +1,3 @@
 <?php
-sleep(100000);
+sleep(100);
 ?>