Merge pull request #6467 from wRAR/fix-typing-error

Fix a typing error with Twisted 24.7.0.
This commit is contained in:
Adrián Chaves 2024-08-26 17:35:20 +02:00 committed by GitHub
commit 7914437a65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class MediaPipeline:
# minimize cached information for failure
result.cleanFailure()
result.frames = []
result.stack = None
result.stack = []
# This code fixes a memory leak by avoiding to keep references to
# the Request and Response objects on the Media Pipeline cache.