-
as seen on Stack Overflow
- Search for 'Stack Overflow'
That 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 last):
File "/base/python_lib/versions/1/google/appengine/ext/webapp/__init__.py", line 501, in __call__
handler.get(*groups)
File "/base/data/home/apps/…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have been testing the taskqueue with mixed success. Currently I am
using the default queue, in default settings ect ect....
I have a test url setup which inserts about 8 tasks into the queue.
With short order, all 8 are completed properly. So far so good.
The problem comes up when I re-load that…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm curious if it's common practice outside of the GAE platform to be able to defer tasks to background workers via webhooks.
I find it particularly useful to speed up the front-end of webapps, by delegating any long process to background tasks.
I'd like to hear about open source software allowing…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I can't figure out how to point unit tests at the queue config file.
Unit Test snippet
// TaskQueue setup
LocalTaskQueueTestConfig tqConfig = new LocalTaskQueueTestConfig();
tqConfig.setQueueXmlPath("/war/WEB_INF/queue.xml");
Stack Trace
java.lang.IllegalStateException: The
specified queue…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
One of the characteristics I love most about Google's Task Queue is its simplicity. More specifically, I love that it takes a URL and some parameters and then posts to that URL when the task queue is ready to execute the task.
This structure means that the tasks are always executing the most current…
>>> More