mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 11:14:28 +00:00
Tweak remote question fetching
This commit is contained in:
parent
e24da84985
commit
2657e4a139
1 changed files with 5 additions and 3 deletions
8
tasks.py
8
tasks.py
|
@ -64,6 +64,8 @@ class Tasks:
|
||||||
dt = parser.parse(question.closed or question.endTime).astimezone(timezone.utc)
|
dt = parser.parse(question.closed or question.endTime).astimezone(timezone.utc)
|
||||||
minutes = int((dt - now).total_seconds() / 60)
|
minutes = int((dt - now).total_seconds() / 60)
|
||||||
|
|
||||||
p.push(
|
if minutes > 0:
|
||||||
question.id, "/task/fetch_remote_question", delay=minutes
|
# Only push the task if the poll is not ended yet
|
||||||
) # XXX: delay expects minutes
|
p.push(
|
||||||
|
question.id, "/task/fetch_remote_question", delay=minutes
|
||||||
|
) # XXX: delay expects minutes
|
||||||
|
|
Loading…
Reference in a new issue