[appengine-java] Cron Jobs Not Updating on Deploy

2011-01-28 Thread Sam Edwards
I've been doing deploys since yesterday afternoon and I keep consistently getting errors after it is deployed and it is updating the cron jobs. This has been working in up until early yesterday afternoon, so I'm not sure of the issue. Below I have the console text from the deploy as well as the

[appengine-java] cron jobs

2010-02-18 Thread Sowji
Hi, Please help me in cron jobs,in google app engine. My program main code is as follows. -- import java.io.IOException; import java.io.PrintWriter; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.List; import java.util.Timer;

Re: [appengine-java] cron jobs

2010-02-18 Thread bimbo jones
Hi, if you want it to be printed on the browser you should use pw.println(cron); pw.close(); instead of System.out.println(cron); 2010/2/18 Sowji sowji.ap...@gmail.com Hi, Please help me in cron jobs,in google app engine. My program main code is as follows.