mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge pull request #4818 from matrix-org/erikj/prefill_client_ips
Prefill client IPs cache on workers
This commit is contained in:
commit
1f85c2c0ce
1
changelog.d/4818.bugfix
Normal file
1
changelog.d/4818.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Fix bug where we didn't correctly throttle sending of USER_IP commands over replication.
|
@ -43,6 +43,8 @@ class SlavedClientIpStore(BaseSlavedStore):
|
||||
if last_seen is not None and (now - last_seen) < LAST_SEEN_GRANULARITY:
|
||||
return
|
||||
|
||||
self.client_ip_last_seen.prefill(key, now)
|
||||
|
||||
self.hs.get_tcp_replication().send_user_ip(
|
||||
user_id, access_token, ip, user_agent, device_id, now
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user