diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-05-22 10:12:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 10:12:17 +0100 |
commit | d84bdfe599aa47617d59c8e6eea5071463382c1c (patch) | |
tree | 6ee150055a285139e9d862e405bec14dcf0d3791 /synapse | |
parent | Fix some DETECTED VIOLATIONS in the config file (#7550) (diff) | |
download | synapse-d84bdfe599aa47617d59c8e6eea5071463382c1c.tar.xz |
mypy for synapse.http.site (#7553)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/http/site.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/synapse/http/site.py b/synapse/http/site.py index 514f2f1402..167293c46d 100644 --- a/synapse/http/site.py +++ b/synapse/http/site.py @@ -14,6 +14,7 @@ import contextlib import logging import time +from typing import Optional from twisted.python.failure import Failure from twisted.web.server import Request, Site @@ -45,7 +46,7 @@ class SynapseRequest(Request): request even after the client has disconnected. Attributes: - logcontext(LoggingContext) : the log context for this request + logcontext: the log context for this request """ def __init__(self, channel, *args, **kw): @@ -53,10 +54,10 @@ class SynapseRequest(Request): self.site = channel.site self._channel = channel # this is used by the tests self.authenticated_entity = None - self.start_time = 0 + self.start_time = 0.0 # we can't yet create the logcontext, as we don't know the method. - self.logcontext = None + self.logcontext = None # type: Optional[LoggingContext] global _next_request_seq self.request_seq = _next_request_seq @@ -182,6 +183,7 @@ class SynapseRequest(Request): self.finish_time = time.time() Request.finish(self) if not self._is_processing: + assert self.logcontext is not None with PreserveLoggingContext(self.logcontext): self._finished_processing() @@ -249,6 +251,7 @@ class SynapseRequest(Request): def _finished_processing(self): """Log the completion of this request and update the metrics """ + assert self.logcontext is not None usage = self.logcontext.get_resource_usage() if self._processing_finished_time is None: |