From 2be81a0511a5896892a9efaed77f892066eac079 Mon Sep 17 00:00:00 2001 From: kf_wuhao <15392746632@qq.com> Date: Sat, 9 Jan 2021 10:22:23 +0800 Subject: [PATCH] 'update' --- task/summary3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task/summary3.py b/task/summary3.py index d0c6742..0966a4c 100644 --- a/task/summary3.py +++ b/task/summary3.py @@ -137,7 +137,7 @@ class Summary3(Task): def get_cursor(self): if not self.cursor_st: self.cursor_st = self.task_info.get('cursor_et') - if self.cursor_st >= int(pd.Timestamp(self.cursor_st, unit='s', tz=self.timezone).normalize().timestamp()): + if self.cursor_st >= int(pd.Timestamp(time.time(), unit='s', tz=self.timezone).normalize().timestamp()): self.cursor_st -= 86400 if not self.cursor_st: self.cursor_st = int(time.time()) - 86400