Skip to content
Snippets Groups Projects
Commit f50efcb6 authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Replace SlavedKeyStore with a shim

since we're pulling everything out of KeyStore anyway, we may as well simplify
it.
parent f88a9e63
No related branches found
No related tags found
No related merge requests found
...@@ -13,19 +13,9 @@ ...@@ -13,19 +13,9 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from synapse.storage import DataStore from synapse.storage import KeyStore
from synapse.storage.keys import KeyStore
from ._base import BaseSlavedStore, __func__ # KeyStore isn't really safe to use from a worker, but for now we do so and hope that
# the races it creates aren't too bad.
SlavedKeyStore = KeyStore
class SlavedKeyStore(BaseSlavedStore):
_get_server_verify_key = KeyStore.__dict__[
"_get_server_verify_key"
]
get_server_verify_keys = __func__(DataStore.get_server_verify_keys)
store_server_verify_key = __func__(DataStore.store_server_verify_key)
get_server_keys_json = __func__(DataStore.get_server_keys_json)
store_server_keys_json = __func__(DataStore.store_server_keys_json)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment