mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-24 10:35:46 +03:00
Use more helpful variable names
This commit is contained in:
parent
891dfd90bd
commit
d3da63f766
1 changed files with 3 additions and 3 deletions
|
@ -163,11 +163,11 @@ def runUntilCurrentTimer(func):
|
|||
|
||||
# _newTimedCalls is one long list of *all* pending calls. Below loop
|
||||
# is based off of impl of reactor.runUntilCurrent
|
||||
for p in reactor._newTimedCalls:
|
||||
if p.time > now:
|
||||
for delayed_call in reactor._newTimedCalls:
|
||||
if delayed_call.time > now:
|
||||
break
|
||||
|
||||
if p.delayed_time > 0:
|
||||
if delayed_call.delayed_time > 0:
|
||||
continue
|
||||
|
||||
num_pending += 1
|
||||
|
|
Loading…
Reference in a new issue