diff options
author | Richard van der Hoff <richard@matrix.org> | 2017-03-22 13:54:20 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2017-03-22 15:11:30 +0000 |
commit | 95f21c7a66b256e9e5330edd0f35a83b177c84a8 (patch) | |
tree | 5e41a1c3480df8418542e067e0bd091f3b14fbaa /tests/util/caches/__init__.py | |
parent | Merge pull request #2033 from matrix-org/erikj/repl_speed (diff) | |
download | synapse-95f21c7a66b256e9e5330edd0f35a83b177c84a8.tar.xz |
Fix caching of remote servers' signature keys
The `@cached` decorator on `KeyStore._get_server_verify_key` was missing its `num_args` parameter, which meant that it was returning the wrong key for any server which had more than one recorded key. By way of a fix, change the default for `num_args` to be *all* arguments. To implement that, factor out a common base class for `CacheDescriptor` and `CacheListDescriptor`.
Diffstat (limited to 'tests/util/caches/__init__.py')
-rw-r--r-- | tests/util/caches/__init__.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/util/caches/__init__.py b/tests/util/caches/__init__.py new file mode 100644 index 0000000000..451dae3b6c --- /dev/null +++ b/tests/util/caches/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Vector Creations Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. |