Mark Bergsma has uploaded a new change for review. ( https://gerrit.wikimedia.org/r/326144 )
Change subject: Set hhvm.server.request_timeout_seconds to 60s ...................................................................... Set hhvm.server.request_timeout_seconds to 60s We've seen various indications that PHP's max_execution_timeout does not work in FCGI context. This is supported by https://github.com/facebook/hhvm/issues/4209 Setting hhvm.server.request_timeout_seconds in the fcgi server config should make the limit of 60s effective again (however the request queue as well, before execution starts). It doesn't solve the issue of setting per-request timeouts in PHP. Bug: T97192 Bug: T149421 Change-Id: Ic41979c3624baa464080e40633a22897e39514e6 --- M modules/hhvm/manifests/init.pp 1 file changed, 1 insertion(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/operations/puppet refs/changes/44/326144/1 diff --git a/modules/hhvm/manifests/init.pp b/modules/hhvm/manifests/init.pp index 133ac3b..1fbbbfc 100644 --- a/modules/hhvm/manifests/init.pp +++ b/modules/hhvm/manifests/init.pp @@ -173,6 +173,7 @@ enable => true, ttl => to_seconds('5 minutes'), }, + request_timeout_seconds => 60, }, }, } -- To view, visit https://gerrit.wikimedia.org/r/326144 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ic41979c3624baa464080e40633a22897e39514e6 Gerrit-PatchSet: 1 Gerrit-Project: operations/puppet Gerrit-Branch: production Gerrit-Owner: Mark Bergsma <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
