mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 19:43:53 +01:00
background updates: Fix assertion to do something
This commit is contained in:
parent
bf3de7b90b
commit
9dbd903f41
1 changed files with 2 additions and 2 deletions
|
@ -88,8 +88,8 @@ 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 not None, \
|
||||||
"background updates already running")
|
"background updates already running"
|
||||||
|
|
||||||
logger.info("Starting background schema updates")
|
logger.info("Starting background schema updates")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue