What is TombstonedTaskError from App Engine's Task Queue?

前端 未结 1 937
暗喜
暗喜 2021-02-06 22:22

What does the TombstonedTaskError mean? It is being raised while trying to add a task to the queue, from a cron-job:

Traceback (most recent call las         


        
相关标签:
1条回答
  • 2021-02-06 22:47

    You've added a task with that exact name before. Although it's already run, executed task names are kept around for some time to prevent accidental duplicates. If you're assigning task names, you should be using ones that are globally unique to prevent this occurring.

    0 讨论(0)
提交回复
热议问题