From f538c1d2bfe73f84a38a1d8e6ba76f7367cbd366 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Wed, 20 Jan 2021 23:45:30 +0530 Subject: [PATCH] feat: update env var description --- app/config/variables.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/config/variables.php b/app/config/variables.php index f662d57689..5b710ad3f0 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -366,7 +366,7 @@ return [ ], [ 'name' => '_APP_MAINTENANCE_EXECUTION_LOG_RETENTION', - 'description' => 'The maximum time period . The default value is 1209600 seconds (14 days).', + 'description' => 'The maximum duration (in seconds) upto which to retain execution logs. The default value is 1209600 seconds (14 days).', 'introduction' => '0.7.0', 'default' => '1209600', 'required' => false, @@ -374,7 +374,7 @@ return [ ], [ 'name' => '_APP_MAINTENANCE_AUDIT_LOG_RETENTION', - 'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before cleaning up the audit logs. The default value is 1209600 seconds (14 days).', + 'description' => 'IThe maximum duration (in seconds) upto which to retain audit logs. The default value is 1209600 seconds (14 days).', 'introduction' => '0.7.0', 'default' => '1209600', 'required' => false, @@ -382,7 +382,7 @@ return [ ], [ 'name' => '_APP_MAINTENANCE_ABUSE_LOG_RETENTION', - 'description' => 'Interval value containing the number of seconds that the Appwrite maintenance process should wait before cleaning up the abuse logs. The default value is 86400 seconds (1 day).', + 'description' => 'The maximum duration (in seconds) upto which to retain abuse logs. The default value is 86400 seconds (1 day).', 'introduction' => '0.7.0', 'default' => '86400', 'required' => false,