From d3b8bb98333a0a7207590b99f28f49ace15ddf92 Mon Sep 17 00:00:00 2001 From: Hemachandar Date: Tue, 3 Feb 2026 02:16:54 +0530 Subject: [PATCH] default false --- src/Appwrite/Platform/Tasks/SSL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Tasks/SSL.php b/src/Appwrite/Platform/Tasks/SSL.php index 4fd67f046c..3a4d621a82 100644 --- a/src/Appwrite/Platform/Tasks/SSL.php +++ b/src/Appwrite/Platform/Tasks/SSL.php @@ -23,7 +23,7 @@ class SSL extends Action ->desc('Validate server certificates') ->param('domain', System::getEnv('_APP_DOMAIN', ''), new Hostname(), 'Domain to generate certificate for. If empty, main domain will be used.', true) ->param('skip-check', true, new Boolean(true), 'If DNS and renew check should be skipped. Defaults to true, and when true, all jobs will result in certificate generation attempt.', true) - ->param('check-rule', true, new Boolean(true), 'If rule lookup and updates should be checked. Defaults to true. Set to false for domains without a rule in DB (e.g., _APP_DOMAIN).', true) + ->param('check-rule', false, new Boolean(true), 'If rule lookup and updates should be checked. Defaults to false. Set to true for domains with a rule in DB.', true) ->inject('queueForCertificates') ->callback($this->action(...)); }