forked from MirrorHub/synapse
fix: defer.returnValue takes one argument
This commit is contained in:
parent
2ee4c9ee02
commit
955ef1f06c
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ class BackgroundUpdateStore(SQLBaseStore):
|
|||
"No more background updates to do."
|
||||
" Unscheduling background update task."
|
||||
)
|
||||
defer.returnValue()
|
||||
defer.returnValue(None)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def do_next_background_update(self, desired_duration_ms):
|
||||
|
|
Loading…
Reference in a new issue