Hi Sarang,
This definitely looks like something goes wrong with Django initialization, may be you have too much registered applications in settings.py they taking ages to initialize, Or some cyclic bug in middleware? You may want to remove all middleware /apps from settings.py and see what happens then Or, doing some cyclic imports? (But in this case some error reporting recursion should be raised...) What Django version do you use? Or this is Django-nonrel? app-engine-patch? (Django have very huge code base.... I'd now personally go with lighter frameworks like Tipfy with some GAE services isolation layer.) Or, you problem could be solved by postponing some of imports in your code - moving it from global scope of the module into function body - so they'll be up on use time, not initialization. Try to add logging to Django core manually - as it initializes, then examine it and see what actually going on. May be you just may strip/disable some parts of Django distro etc. * * -- 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.
