summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorEric Eastwood <erice@element.io>2022-08-02 15:19:28 -0500
committerEric Eastwood <erice@element.io>2022-08-02 15:19:28 -0500
commit2491665ed9f7ff7b205011f675ef0324fab313fc (patch)
treea6662770f4bdc93f68adbbf1ac1f41fb6c837984 /synapse
parentFix lints (diff)
downloadsynapse-2491665ed9f7ff7b205011f675ef0324fab313fc.tar.xz
Fix remnant
Diffstat (limited to 'synapse')
-rw-r--r--synapse/http/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/server.py b/synapse/http/server.py
index a717d72139..6420c0837b 100644
--- a/synapse/http/server.py
+++ b/synapse/http/server.py
@@ -880,7 +880,7 @@ async def _async_write_json_to_request_in_thread(
 
     def encode(tracing_span: Optional["opentelemetry.trace.Span"]) -> bytes:
         # it might take a while for the threadpool to schedule us, so we write
-        # opentracing logs once we actually get scheduled, so that we can see how
+        # tracing logs once we actually get scheduled, so that we can see how
         # much that contributed.
         if tracing_span:
             tracing_span.add_event("scheduled", attributes={"event": "scheduled"})