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 b5074944b0)
This commit is contained in:
Michał Gołębiowski 2014-03-18 16:50:04 +01:00
parent be565d1cdb
commit 7f5a0df20c

View File

@ -1,3 +1,3 @@
<?php
sleep(100000);
sleep(100);
?>