diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-10-14 19:40:53 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-10-14 23:38:14 +0100 |
commit | 7eff59ec91e59140c375b43a6dac05b833ab0051 (patch) | |
tree | a5f570feda94700626c85a9bc3130586a52256d2 /synapse/replication/slave | |
parent | Move additional tasks to the background worker, part 4 (#8513) (diff) | |
download | synapse-7eff59ec91e59140c375b43a6dac05b833ab0051.tar.xz |
Add some more type annotations to Cache
Diffstat (limited to 'synapse/replication/slave')
-rw-r--r-- | synapse/replication/slave/storage/client_ips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/client_ips.py b/synapse/replication/slave/storage/client_ips.py index 1f8dafe7ea..273d627fad 100644 --- a/synapse/replication/slave/storage/client_ips.py +++ b/synapse/replication/slave/storage/client_ips.py @@ -26,7 +26,7 @@ class SlavedClientIpStore(BaseSlavedStore): self.client_ip_last_seen = Cache( name="client_ip_last_seen", keylen=4, max_entries=50000 - ) + ) # type: Cache[tuple, int] async def insert_client_ip(self, user_id, access_token, ip, user_agent, device_id): now = int(self._clock.time_msec()) |