Hello,
I just moved to Django 1.0 and I am facing a weird error when Django
sessions tries to save the session into the PostgreSQL DB.

A traceback is given below:

2008-09-04 17:30:55: (mod_fastcgi.c.2534) FastCGI-stderr: Traceback
(most recent call last):
  File "/var/lib/python-support/python2.4/flup/server/fcgi_base.py",
line 558, in run
    protocolStatus, appStatus = self.server.handler(self)
  File "/var/lib/python-support/python2.4/flup/server/fcgi_base.py",
line 1112, in handler
    result = self.application(environ, start_response)
  File "/usr/lib/python2.4/site-packages/django/core/handlers/
wsgi.py", line 221, in __call__

  File "/usr/lib/python2.4/site-packages/django/contrib/sessions/
middleware.py", line 33, in process_response
    request.session.save()
  File "/usr/lib/python2.4/site-packages/django/contrib/sessions/
backends/db.py", line 56, in save
    sid = transaction.savepoint()
AttributeError: 'module' object has no attribute 'savepoint'

I am not sure why this is happening since I can see that savepoint
method is present in the transaction class.

This only happens when Django tries to do any kind of session
handling.

Any help will be appreciated.

Regards,
BG

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to