Skip to content
Permalink
Browse files
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.
  • Loading branch information
mgol committed Mar 18, 2014
1 parent c1e9bb9 commit b507494
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1,3 +1,3 @@
<?php
sleep(100000);
sleep(100);
?>

0 comments on commit b507494

Please sign in to comment.