[appengine-java] Re: Task Queues and other services in jetty

2010-07-12 Thread Miroslav Genov
Any ideas ? Regards, Miroslav On 07/10/2010 08:36 PM, Miroslav Genov wrote: Hello, My general idea of doing this in jetty instead of GAE's local development server is that I want to spin up the development server from my test. To handle that, I made a custom ApiProxy.Delegate that could

[appengine-java] Re: Task Queues and other services in jetty

2010-07-12 Thread Miroslav Genov
I got it working. It seems that LocalTaskQueueTestConfig has a property disableAutoTaskExecution. Here is the snippet that fixes my issue: LocalTaskQueueTestConfig taskQueueConfig = new LocalTaskQueueTestConfig(); taskQueueConfig.setDisableAutoTaskExecution(false); Regards, Miroslav On