Prefill client IPs cache on workers

This commit is contained in:
Erik Johnston 2019-03-06 17:39:32 +00:00
parent 7b8a157b79
commit face0c5b3c

View File

@ -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
)