I have inherited a system of web apps written in Play Framework 1.3 with zero knowledge transfer, and have been working through some bugs.
We have a Job that is running, but there is a bug with it. The Job runs at certain times of day, but for testing and debugging purposes I want to manually run it locally.
When I run play run locally the Job doesn't seem to run though.
Any ideas/pointers?
Jobs can be triggered by now() method;
if your job returns something (using doJobWithResult() method) you can use it like this (using List type for the example):