mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-14 11:57:44 +00:00
Prevent "producer not unregistered" message (#5009)
This commit is contained in:
parent
1a63c7c281
commit
6b2b9a58c4
2 changed files with 5 additions and 0 deletions
1
changelog.d/5009.bugfix
Normal file
1
changelog.d/5009.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Clients timing out/disappearing while downloading from the media repository will now no longer log a spurious "Producer was not unregistered" message.
|
|
@ -191,6 +191,10 @@ def respond_with_responder(request, responder, media_type, file_size, upload_nam
|
|||
# in that case.
|
||||
logger.warning("Failed to write to consumer: %s %s", type(e), e)
|
||||
|
||||
# Unregister the producer, if it has one, so Twisted doesn't complain
|
||||
if request.producer:
|
||||
request.unregisterProducer()
|
||||
|
||||
finish_request(request)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue