405 is "Method Not Allowed" That request is using a HEAD method. Your application must not be able to handle them. Its likely only setup to handle GET's (which is what a browser mostly uses) and maybe POST's if you have any forms.
So could modify the app so that it supports HEAD requests. Some of the reasons why http://blog.mostof.it/what-is-a-http-head-request-good-for-some-uses/#.UBas67RSRIo Or can just ignore them. Nothing says you absoluely have to support HEAD requests, although it is good practice to do so. That IP address, seems to be from http://planetflow.planet-lab.org/ so they are doing some sort of research. You could also block them https://developers.google.com/appengine/docs/python/config/dos to save you a bit of money. On Mon, Jul 30, 2012 at 3:52 PM, Kate <[email protected]> wrote: > I am getting errors every few seconds being reported on my dashboard. > However my pages load OK without error. When I delve from the error which is > reported at /_ I get the following type of log entry. What can this mean? > > 012-07-30 07:49:22.860 / 405 68ms 0kb curl/7.18.2 (i386-redhat-linux-gnu) > libcurl/7.18.2 NSS/3.12.2.0 zlib/1.2.3 libidn/0.6.14 libssh2/0.18 > > 128.233.252.12 - - [30/Jul/2012:07:49:22 -0700] "HEAD / HTTP/1.1" 405 124 - > "curl/7.18.2 (i386-redhat-linux-gnu) libcurl/7.18.2 NSS/3.12.2.0 zlib/1.2.3 > libidn/0.6.14 libssh2/0.18" "aussieclouds.appspot.com" ms=69 cpu_ms=0 > api_cpu_ms=0 cpm_usd=0.000046 > instance=00c61b117cc74495d13a7c9bd0b786398b9deda2 > > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/google-appengine/-/5x3ySkcl13oJ. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
