Skip to content

Commit f59f790

Browse files
committed
minor #12346 [SwiftMailer Spool] Fix double negative (kraynel)
This PR was merged into the 3.4 branch. Discussion ---------- [SwiftMailer Spool] Fix double negative This fixes a double negative related to SwiftMailer file spooling. I believe that if the cache is cleared, the Message WILL BE unserializable. Commits ------- 6d24aa7 [SwiftMailer Spool] Fix double negative
2 parents 6a5fa12 + 6d24aa7 commit f59f790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

email/spool.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ interval.
153153
But when using the filesystem spool, the message class is serialized in
154154
a file with the randomized class name. The problem is that this random
155155
class name changes on every cache clear. So if you send a mail and then you
156-
clear the cache, the message will not be unserializable.
156+
clear the cache, the message will be unserializable.
157157

158158
On the next execution of ``swiftmailer:spool:send`` an error will raise because
159159
the class ``Swift_Message_<someRandomCharacters>`` doesn't exist (anymore).

0 commit comments

Comments
 (0)