summary refs log tree commit diff
path: root/synapse/push/httppusher.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r--synapse/push/httppusher.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py

index e96fb45e9f..11299367d2 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py
@@ -23,7 +23,7 @@ from twisted.internet.interfaces import IDelayedCall from synapse.api.constants import EventTypes from synapse.events import EventBase -from synapse.logging import opentracing +from synapse.logging import tracing from synapse.metrics.background_process_metrics import run_as_background_process from synapse.push import Pusher, PusherConfig, PusherConfigException from synapse.storage.databases.main.event_push_actions import HttpPushAction @@ -198,9 +198,9 @@ class HttpPusher(Pusher): ) for push_action in unprocessed: - with opentracing.start_active_span( + with tracing.start_active_span( "http-push", - tags={ + attributes={ "authenticated_entity": self.user_id, "event_id": push_action.event_id, "app_id": self.app_id,