Opened 10 years ago

Closed 10 years ago

#21751 closed Cleanup/optimization (fixed)

Django doesn't do a good job of closing cursors

Reported by: Michael Manfre Owned by: Michael Manfre
Component: Database layer (models, ORM) Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

When something in Django opens a cursor, it should make sure it is closed when no longer needed.

Change History (5)

comment:1 by Aymeric Augustin, 10 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Michael Manfre, 10 years ago

https://github.com/django/django/pull/2154

Pull request is ready for initial review.

comment:3 by Michael Manfre, 10 years ago

Has patch: set

comment:4 by Tim Graham, 10 years ago

I closed #14298 and #17956 as duplicates.

comment:5 by Aymeric Augustin <aymeric.augustin@…>, 10 years ago

Resolution: fixed
Status: newclosed

In 54bfa4caab11d364eb208ba6639836fa22d69a04:

Merge pull request #2154 from manfre/close-cursors

Fixed #21751 -- Explicitly closed cursors.

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