Well... it seems that with django 0.96 everything works fine (at least
in my case). So far there's no errors at all. Anyway, it's very
extrange...

Regards

On 12 sep, 13:37, Ernesto Ferro <ernestofe...@gmail.com> wrote:
> Yes, I'm using use_library('django', '1.0'). I'll will try with the
> older version of django but I hope that this is not the solution for
> this...
> I will post the results.
>
> Regards
>
> On 12 sep, 13:16, Nick Winter <livel...@gmail.com> wrote:
>
>
>
> > We've been getting errors like this in batches (cannot import name
> > signals) ever since the September 2nd migration, along with generally
> > elevated error rates. I would love to know what's going on with this.
>
> > Are you using use_library('django', '1.0') anywhere in the simplified
> > version and still getting it? That might have something to do with it,
> > although I'm not sure.
>
> > On Sep 11, 9:51 am, Ernesto Ferro <ernestofe...@gmail.com> wrote:
>
> > > Hi everyone! Since a few days I'm having some random 500 errors so I
> > > made a REALLY simple version of it... and I'm still getting the same
> > > behavior...
>
> > > This is the code of the simplified version:
>
> > > urls.py
>
> > > from django.conf import settings
> > > from django.conf.urls.defaults import *
>
> > > urlpatterns = patterns('apps.test.views',
> > >     (r'^$', 'test'),
> > > )
>
> > > views.py
>
> > > # -*- coding:UTF-8
> > > import unicodedata
> > > from django.http import HttpResponse, HttpResponseRedirect
> > > from django.shortcuts import render_to_response, get_object_or_404
> > > import os
>
> > > def test(request):
> > >     return render_to_response("test/test.html")
>
> > > ---------
>
> > > I'm getting a 30% rate of errors and it's dead easy to fail. This are
> > > the logs:
>
> > > Exception in request:
> > > Traceback (most recent call last):
> > >   File "/base/python_lib/versions/third_party/django-1.0/django/core/
> > > handlers/base.py", line 77, in get_response
> > >     request.path_info)
> > >   File "/base/python_lib/versions/third_party/django-1.0/django/core/
> > > urlresolvers.py", line 181, in resolve
> > >     sub_match = pattern.resolve(new_path)
> > >   File "/base/python_lib/versions/third_party/django-1.0/django/core/
> > > urlresolvers.py", line 181, in resolve
> > >     sub_match = pattern.resolve(new_path)
> > >   File "/base/python_lib/versions/third_party/django-1.0/django/core/
> > > urlresolvers.py", line 124, in resolve
> > >     return self.callback, args, kwargs
> > >   File "/base/python_lib/versions/third_party/django-1.0/django/core/
> > > urlresolvers.py", line 133, in _get_callback
> > >     raise ViewDoesNotExist, "Could not import %s. Error was: %s" %
> > > (mod_name, str(e))
> > > ViewDoesNotExist: Could not import apps.test.views. Error was: cannot
> > > import name signals
>
> > > -----------------
>
> > > <class 'google.appengine.runtime.DeadlineExceededError'>:
> > > Traceback (most recent call last):
> > >   File "/base/data/home/apps/webappmobile/3.336262356632739195/
> > > main.py", line 47, in <module>
> > >     main()
> > > ..
> > > ..
> > > ..
> > >   File "/base/python_dist/lib/python2.5/linecache.py", line 80, in
> > > updatecache
> > >     stat = os.stat(fullname)
> > > OR
> > > File "/base/python_dist/lib/python2.5/linecache.py", line 128, in
> > > updatecache
> > >     fp = open(fullname, 'rU')
> > > OR
> > > File "/base/python_dist/lib/python2.5/linecache.py", line 129, in
> > > updatecache
> > >     lines = fp.readlines()
>
> > > Has anybody experienced something like this?. It's related to google?
>
> > > Regards
--~--~---------~--~----~------------~-------~--~----~
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-appengine@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