On Fri, Sep 19, 2014 at 7:14 AM, Kona <[email protected]> wrote: > I have a code whcih runs on google app engine backends () and it running > into the stack trace. I have about 4000 threads running at a time. The > version I am using is objectify 3.1. Some times it gets error at dao > operations like this one at > com.agilecrm.user.util.DomainUserUtil.getDomainUser(DomainUserUtil.java:114) > where > this line is a dao operation. Some part of this error is given blow. >
Hi Kona, When you see this error does the application proceed with execution as normal, or does it exit out and return a failure status code? The exception you posted is the LogAndContinueErrorHandler, which means that this message is purely informational: it should not interrupt normal app operations. ----------------- -Vinny P Technology & Media Consultant 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/d/optout.
