In Python, they are disabled by default (http://code.google.com/
appengine/docs/python/config/appconfig.html#Inbound_Services), so if
you're seeing them, and your app.yaml is not configured for warmup,
it's likely a bug.

In Java, they're on by default (http://code.google.com/appengine/docs/
java/config/appconfig.html#Warming_Requests), so if you want to
disable them,  you can specify in your web.xml:

  <warming-requests-enabled>false</warming-requests-enabled>

There looks to be a documentation error if your use app.yaml to
configure your Java application:

http://code.google.com/appengine/docs/java/config/appconfig.html#Warming_Requests
says "Warming requests are also enabled by default if you configured
your Java application with app.yaml."
http://code.google.com/appengine/docs/java/configyaml/appconfig_yaml.html#Warming_Requests
says "In Java applications configured with app.yaml, warming requests
are disabled by default."

I'm not sure which one is true.

j

On Dec 5, 12:02 am, Will <vocalster....@gmail.com> wrote:
> Hmm, thanks.
>
> I can live with the log, as long as doing nothing serves the purpose. I
> prefer less code unless it's absolutely necessary.
>
> Best,
>
> Will
>
>
>
> On Sun, Dec 5, 2010 at 10:25 AM, 风笑雪 <kea...@gmail.com> wrote:
> > You'd better implement it if you don't want to see it logged as an
> > error in your dashboard.
>
> > However, the implementation can be empty:
>
> > class WarmupHandler(RequestHandler):
> >        def get(self):
> >                pass # or log it by: logging.info('Warmup Request')
>
> > ----------
> > keakon
>
> > --
> > 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<google-appengine%2Bunsubscrib 
> > e...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-appengine?hl=en.

-- 
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