mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Don't log stack trace when client has gone away during media download (#4738)
* Don't log stack trace when client has gone away during media download * Newsfile * Fixup newsfile
This commit is contained in:
parent
641c409e4e
commit
899a119c2b
1
changelog.d/4738.misc
Normal file
1
changelog.d/4738.misc
Normal file
@ -0,0 +1 @@
|
||||
Cleanup request exception logging.
|
@ -133,8 +133,15 @@ def respond_with_responder(request, responder, media_type, file_size, upload_nam
|
||||
|
||||
logger.debug("Responding to media request with responder %s")
|
||||
add_file_headers(request, media_type, file_size, upload_name)
|
||||
with responder:
|
||||
yield responder.write_to_consumer(request)
|
||||
try:
|
||||
with responder:
|
||||
yield responder.write_to_consumer(request)
|
||||
except Exception as e:
|
||||
# The majority of the time this will be due to the client having gone
|
||||
# away. Unfortunately, Twisted simply throws a generic exception at us
|
||||
# in that case.
|
||||
logger.warning("Failed to write to consumer: %s %s", type(e), e)
|
||||
|
||||
finish_request(request)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user