diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-01-07 14:18:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 14:18:43 +0000 |
commit | 85db7f73be15cc088f5e378980021e335001ce87 (patch) | |
tree | f6efe9db7d54e76af87b14cac70461b6a3a3d09f /synapse/storage/_base.py | |
parent | Async/await for background updates (#6647) (diff) | |
download | synapse-85db7f73be15cc088f5e378980021e335001ce87.tar.xz |
Add a background update to clear tombstoned rooms from the directory (#6648)
* Add a background update to clear tombstoned rooms from the directory * use the ABC metaclass
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r-- | synapse/storage/_base.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index 88546ad614..3bb9381663 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -16,6 +16,7 @@ # limitations under the License. import logging import random +from abc import ABCMeta from six import PY2 from six.moves import builtins @@ -30,7 +31,8 @@ from synapse.types import get_domain_from_id logger = logging.getLogger(__name__) -class SQLBaseStore(object): +# some of our subclasses have abstract methods, so we use the ABCMeta metaclass. +class SQLBaseStore(metaclass=ABCMeta): """Base class for data stores that holds helper functions. Note that multiple instances of this class will exist as there will be one |