mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-10 11:10:00 -04:00
Add missing types to opentracing. (#13345)
After this change `synapse.logging` is fully typed.
This commit is contained in:
parent
190f49d8ab
commit
50122754c8
14 changed files with 83 additions and 45 deletions
|
@ -208,7 +208,9 @@ class KeyChangesServlet(RestServlet):
|
|||
|
||||
# We want to enforce they do pass us one, but we ignore it and return
|
||||
# changes after the "to" as well as before.
|
||||
set_tag("to", parse_string(request, "to"))
|
||||
#
|
||||
# XXX This does not enforce that "to" is passed.
|
||||
set_tag("to", str(parse_string(request, "to")))
|
||||
|
||||
from_token = await StreamToken.from_string(self.store, from_token_string)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue