https://bugzilla.wikimedia.org/show_bug.cgi?id=70843
--- Comment #3 from Bryan Davis <[email protected]> --- (In reply to Dan Duvall from comment #2) > I believe the threshold for script execution is controlled by > 'max_execution_timeout' which still seems to be set at 180. [1] > > vagrant@mediawiki-vagrant:~$ php -r > 'var_dump(ini_get("max_execution_time"));' > string(3) "180" > > We _could_ change this globally for all php script, however considering this > limit can easily be overridden at runtime it seems more like something that > should be handled by composer itself. > > [1] > http://docs.hhvm.com/manual/en/info.configuration.php#ini.max-execution-time I think this is a bug in hhvm actually. Read that documentation link you gave and you'll see that php5-cli defaults to "0" for this as can be seen with the php5 binary: $ php5 -r 'var_dump(ini_get("max_execution_time"));' string(1) "0" -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
