On Jun 7, 8:53 pm, Francisco Ceruti <francisco.cer...@gmail.com>
wrote:
> Hi everyone,
>
> Whenever i get the:
>
> INFO: This request caused a new process to be started for your
> application, and thus caused your application code to be loaded for
> the first time. This request may thus take longer and use more CPU
> than a typical request for your application.
>
> the server returns an empty page. I don know what the problem may me
> anyone got any clues? has this happend to anyone?

Are you missing the:

if __name__ == "__main__":
    main()

clause in your handler file?  This is a common cause of this problem;
when a new instance is started, the .py file is executed.  On
subsequent requests, main() is just run if it was cached from an
earlier request.  If you just define main() without running it, you'll
get no output.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to