mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Prevent "producer not unregistered" message (#5009)
This commit is contained in:
parent
1a63c7c281
commit
6b2b9a58c4
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 New Issue
Block a user