Opened 15 years ago

Last modified 12 years ago

#10547 closed

Delayed Loading Model Update Causes Recursive Errors — at Version 1

Reported by: megaman821@… Owned by: nobody
Component: Database layer (models, ORM) Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Alex Gaynor)

I don't really have much insight to this right now but here is the stack trace.

File "/var/www/next_django/apps/django/core/cache/backends/filebased.py" in set
  71.             pickle.dump(value, f, pickle.HIGHEST_PROTOCOL)
File "/var/www/next_django/apps/django/db/models/base.py" in __reduce__
  352.             return super(Model, self).__reduce__()
File "/var/www/next_django/apps/django/db/models/base.py" in __reduce__
  352.             return super(Model, self).__reduce__()
File "/var/www/next_django/apps/django/db/models/base.py" in __reduce__
  352.             return super(Model, self).__reduce__()
File "/var/www/next_django/apps/django/db/models/base.py" in __reduce__

Change History (1)

comment:1 by Alex Gaynor, 15 years ago

Description: modified (diff)

Fixed formatting. What is it you're trying to do that causes this error?

Note: See TracTickets for help on using tickets.
Back to Top