Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/4164.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix noop checks when updating device keys, reducing spurious device list update notifications.
5 changes: 4 additions & 1 deletion synapse/storage/end_to_end_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ def _set_e2e_device_keys_txn(txn):
allow_none=True,
)

new_key_json = encode_canonical_json(device_keys)
# In py3 we need old_key_json to match new_key_json type. The DB
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/In py3//.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hum I guess actually you're right: it doesn't matter in py2 because bytes can be compared to unicode

# returns unicode while encode_canonical_json returns bytes.
new_key_json = encode_canonical_json(device_keys).decode("utf-8")

if old_key_json == new_key_json:
return False

Expand Down
15 changes: 15 additions & 0 deletions tests/storage/test_end_to_end_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@ def test_key_without_device_name(self):
dev = res["user"]["device"]
self.assertDictContainsSubset({"keys": json, "device_display_name": None}, dev)

@defer.inlineCallbacks
def test_reupload_key(self):
now = 1470174257070
json = {"key": "value"}

yield self.store.store_device("user", "device", None)

changed = yield self.store.set_e2e_device_keys("user", "device", now, json)
self.assertTrue(changed)

# If we try to upload the same key then we should be told nothing
# changed
changed = yield self.store.set_e2e_device_keys("user", "device", now, json)
self.assertFalse(changed)

@defer.inlineCallbacks
def test_get_key_with_device_name(self):
now = 1470174257070
Expand Down