From 3803173c9e8f10f6ab315e8e091e7ef77dac54b8 Mon Sep 17 00:00:00 2001 From: Claire Date: Mon, 30 Sep 2024 13:47:22 +0200 Subject: [PATCH] Remove documentation for `REGEXP_TIMEOUT` environment variable (#1538) It was only added in the development version, and removed afterwards without reaching any (pre-)release. --- content/en/admin/config.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/content/en/admin/config.md b/content/en/admin/config.md index b588c98..98c0ebf 100644 --- a/content/en/admin/config.md +++ b/content/en/admin/config.md @@ -1184,17 +1184,3 @@ Defaults to `512`. #### `GITHUB_API_TOKEN` Used in a rake task for generating AUTHORS.md from GitHub commit history. - -#### `REGEXP_TIMEOUT` - -The number of seconds until regular expressions time out (fractional -values are possible, e.g. `1.6`). This defaults to `2` which should be -fine for most deployments. If you encounter a lot of -`Regexp::TimeoutError`s in your logs, try to increase this value. If you -are worried about ReDOS attacks, you can try lower values (for some -instances, values as low as `0.5` seem to work), but look out for those -`Regexp::TimeoutError` exceptions. - -**Version history:**\ -4.3.0 - added -