diff options
author | Erik Johnston <erik@matrix.org> | 2019-09-05 15:22:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-05 15:22:24 +0100 |
commit | 1a6ae333090c5b34ab6a3e0427dfc87ed99d6a9c (patch) | |
tree | 0c1b096f70c9d7743049765fdc31639001fa84ea /synapse/storage/devices.py | |
parent | Add opentracing to all client servlets (#5983) (diff) | |
parent | use access methods (duh..) (diff) | |
download | synapse-1a6ae333090c5b34ab6a3e0427dfc87ed99d6a9c.tar.xz |
Merge pull request #5984 from matrix-org/joriks/opentracing_link_send_to_edu_contexts
Link the send loop with the edus contexts
Diffstat (limited to 'synapse/storage/devices.py')
-rw-r--r-- | synapse/storage/devices.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/devices.py b/synapse/storage/devices.py index 41f62828bd..79a58df591 100644 --- a/synapse/storage/devices.py +++ b/synapse/storage/devices.py @@ -856,7 +856,7 @@ class DeviceStore(DeviceWorkerStore, BackgroundUpdateStore): "ts": now, "opentracing_context": json.dumps(context) if whitelisted_homeserver(destination) - else None, + else "{}", } for destination in hosts for device_id in device_ids |