bug #29837 Fix SwiftMailerHandler to support Monolog's latest reset functionality (Seldaek)

This PR was merged into the 3.4 branch.

Discussion
----------

Fix SwiftMailerHandler to support Monolog's latest reset functionality

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| License       | MIT

Monolog 1.24 added the ResettableInterface which is meant to support resetting handlers. Reset should also flush as if the request was ending, and it can be used for long running workers for example in between each job that is processed. Due to SwiftMailer's spool however the emails in case of errors are right now only sent at the very end of the worker's lifetime.

For older Monolog versions, this will be ignored, and is thus harmless.

Commits
-------

ada2d83b67 Fix SwiftMailerHandler to support Monolog's latest reset functionality
This commit is contained in:
Fabien Potencier 2019-01-13 17:54:10 +01:00
commit 3ea4901516
1 changed files with 8 additions and 0 deletions

View File

@ -59,6 +59,14 @@ class SwiftMailerHandler extends BaseSwiftMailerHandler
}
}
/**
* {@inheritdoc}
*/
public function reset()
{
$this->flushMemorySpool();
}
/**
* Flushes the mail queue if a memory spool is used.
*/