Changes between Initial Version and Version 1 of Ticket #8320


Ignore:
Timestamp:
Aug 16, 2008, 4:22:25 PM (16 years ago)
Author:
Malcolm Tredinnick
Comment:

(Fixed description to stop my eyes watering.)

Putting this on the 1.0 track because if it can ever be reliably repeated we should definitely fix it. That first part is going to be the trick, of course. Finding the right 'component' is a little tough, since we don't quite know where the problem lies. Making it admin for now, since that's the visible symptom at least.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8320

    • Property Component UncategorizedAdmin interface
    • Property Milestone 1.0 maybe1.0
    • Property Triage Stage UnreviewedAccepted
  • Ticket #8320 – Description

    initial v1  
    33Environment:
    44
    5 Request Method: POST
    6 
    7 Request URL: http://test.holdenweb.com/admin/accounts/userprofile/14/
    8 
    9 Django Version: 1.0-alpha_2-SVN-8346
    10 
    11 Python Version: 2.4.3
     5 * Request Method: POST
     6 * Request URL: http://test.holdenweb.com/admin/accounts/userprofile/14/
     7 * Django Version: 1.0-alpha_2-SVN-8346
     8 * Python Version: 2.4.3
    129
    1310Installed Applications:
    14 
     11{{{
     12#!python
    1513['django.contrib.auth',
    1614 'django.contrib.contenttypes',
     
    2321 'registration',
    2422 'accounts']
     23}}}
    2524Installed Middleware:
     25{{{
     26#!python
    2627('django.middleware.common.CommonMiddleware',
    2728 'django.contrib.sessions.middleware.SessionMiddleware',
    2829 'django.contrib.auth.middleware.AuthenticationMiddleware',
    2930 'django.middleware.doc.XViewMiddleware')
    30 
     31}}}
    3132
    3233Traceback:
     34{{{
    3335File "/home/holdenwe/django-trunk/django/core/handlers/base.py" in get_response
    3436  86.                 response = callback(request, *callback_args, **callback_kwargs)
     
    4850Exception Type: TransactionManagementError at /admin/accounts/userprofile/14/
    4951Exception Value: Transaction managed block ended with pending COMMIT/ROLLBACK
    50 
     52}}}
Back to Top