Skip to content

Commit

Permalink
Core: Change the sleep time in dont_return.php to a sane value
Browse files Browse the repository at this point in the history
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.
2 changes: 1 addition & 1 deletion test/data/core/dont_return.php
@@ -1,3 +1,3 @@
<?php
sleep(100000);
sleep(100);
?>

0 comments on commit b507494

Please sign in to comment.