clean: push timer

feat: purge stagging on pre--redo/undo
This commit is contained in:
Swann
2021-01-12 11:33:48 +01:00
parent e3bd7ea445
commit abd846fc8d
4 changed files with 19 additions and 8 deletions

View File

@ -139,7 +139,6 @@ class PushTimer(Timer):
def execute(self):
while self.q_push:
node = session.get(uuid= self.q_push.pop())
start = utils.current_milli_time()
if node.has_changed():
try:
@ -154,7 +153,7 @@ class PushTimer(Timer):
except Exception as e:
logging.error(e)
else:
logging.info("Skipping updatem no changes")
logging.debug("Skipping update no changes")
class DynamicRightSelectTimer(Timer):
def __init__(self, timeout=.1):