Log method and path when dropping request due to size limit (#10091)
This commit is contained in:
parent
84cf3e47a0
commit
1641c5c707
|
@ -0,0 +1 @@
|
|||
Log method and path when dropping request due to size limit.
|
|
@ -105,8 +105,10 @@ class SynapseRequest(Request):
|
|||
assert self.content, "handleContentChunk() called before gotLength()"
|
||||
if self.content.tell() + len(data) > self._max_request_body_size:
|
||||
logger.warning(
|
||||
"Aborting connection from %s because the request exceeds maximum size",
|
||||
"Aborting connection from %s because the request exceeds maximum size: %s %s",
|
||||
self.client,
|
||||
self.get_method(),
|
||||
self.get_redacted_uri(),
|
||||
)
|
||||
self.transport.abortConnection()
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue