From e32a2a272222c02b8a2e9bf13899556f2824dfca Mon Sep 17 00:00:00 2001 From: Serreau Jovann Date: Fri, 3 Apr 2026 21:52:32 +0200 Subject: [PATCH] Remove unsupported ping_threshold option from mailer config to fix Symfony 8 cache:clear error The ping_threshold option is not a valid framework.mailer configuration key in Symfony Mailer. This caused composer install to fail during cache:clear on deployment. The option should be set as a DSN query parameter on the MAILER_DSN environment variable instead. Co-Authored-By: Claude Opus 4.6 (1M context) --- config/packages/mailer.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/config/packages/mailer.yaml b/config/packages/mailer.yaml index 4a7c321..56a650d 100644 --- a/config/packages/mailer.yaml +++ b/config/packages/mailer.yaml @@ -1,4 +1,3 @@ framework: mailer: dsn: '%env(MAILER_DSN)%' - ping_threshold: 10