我有一个倒计时的芹菜任务,我想强制执行此任务。
task_id = uuid()
timer.apply_async(
args=(self.room_group_name,
cache.get(f'{self.room_name}_round'),
cache.get(f'{self.room_name}_round') > self.total_rounds
),
countdown=self.timer'
task_id=task_id
)
现在我撤销此任务并创建另一个任务。 有可能用倒计时强制执行芹菜任务吗?