diff options
author | Erik Johnston <erikj@element.io> | 2024-05-29 11:52:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 11:52:48 +0100 |
commit | d7198dfb950ad4b2b1c65ff1b22026782d231f3c (patch) | |
tree | 40808b0e68e09597699a75e1e1bd28bf98b6fedc /changelog.d | |
parent | Handle duplicate OTK uploads racing (#17241) (diff) | |
download | synapse-d7198dfb950ad4b2b1c65ff1b22026782d231f3c.tar.xz |
Ignore attempts to send to-device messages to bad users (#17240)
Currently sending a to-device message to a user ID with a dodgy destination is accepted, but then ends up spamming the logs when we try and send to the destination. An alternative would be to reject the request, but I'm slightly nervous that could break things.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/17240.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/17240.bugfix b/changelog.d/17240.bugfix new file mode 100644 index 0000000000..c596d270ce --- /dev/null +++ b/changelog.d/17240.bugfix @@ -0,0 +1 @@ +Ignore attempts to send to-device messages to bad users, to avoid log spam when we try to connect to the bad server. |