mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-06 16:06:52 +00:00
background updates: fix assert again
This commit is contained in:
parent
9dbd903f41
commit
2ee4c9ee02
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class BackgroundUpdateStore(SQLBaseStore):
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def start_doing_background_updates(self):
|
def start_doing_background_updates(self):
|
||||||
assert self._background_update_timer is not None, \
|
assert self._background_update_timer is None, \
|
||||||
"background updates already running"
|
"background updates already running"
|
||||||
|
|
||||||
logger.info("Starting background schema updates")
|
logger.info("Starting background schema updates")
|
||||||
|
|
Loading…
Add table
Reference in a new issue