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

View File

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