On Tue, Feb 11, 2014 at 3:20 PM, Jesse Redl <[email protected]> wrote:
> In our current application structure we have two modules defined. > > - One for "backend" processing. These are F1 instances that handle > items like cron, mapreduce jobs, task queue processing etc. > - One for "frontend" request handling. These are F4 instances that > handle page / api requests. > > However, we are noticing that the dispatch.yaml file appears to not be > routing all requests correctly. Within in the logs we see the "backend" > module handling page requests > When you say that some requests are being improperly handled by the backend module, do the improperly handled requests have anything in common? For example, are they all coming from the same source, or from another version, etc? What you can try is to change the module naming: make the *default* module handle frontend requests, and create a new *backend* module to handle all backend services. It's a minor change, but App Engine seems to treat the *default* module as special; it may fix the issue. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
