From 3c40dc434139e38ee3945dc70bdd2b0735f378aa Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 4 Mar 2026 00:28:44 -0500 Subject: [PATCH] docs(config): `external_storage.auth_availability_delay` improvements Signed-off-by: Josh --- config/config.sample.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index f85a1da6a5be5..9aaf502ccfdbf 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2441,10 +2441,14 @@ 'quota_include_external_storage' => false, /** - * When an external storage is unavailable (e.g., due to failed authentication), - * it is flagged as such for a specified duration. For authentication failures, - * this delay can be customized to reduce the likelihood of account lockouts in - * systems like Active Directory. + * Delay (in seconds) before retrying an external storage after an + * authentication-related failure (StorageAuthException). + * + * On auth failures, the storage is marked unavailable for this duration + * to avoid repeated login attempts (for example, reducing risk of AD lockouts). + * + * The effective delay is clamped to a minimum of ``600`` seconds, so lower + * values have no effect. * * Defaults to ``1800`` seconds (30 minutes) */