Changes between Initial Version and Version 2 of Ticket #25362
- Timestamp:
- Sep 7, 2015, 7:35:21 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25362
- Property Component Uncategorized → Database layer (models, ORM)
-
Ticket #25362 – Description
initial v2 1 1 Similar to ticket #21553 psycopg2.InterfaceError is not handled correctly and leads to django re-using the same connection despite it being closed. 2 2 {{{ 3 3 StackTrace Below: 4 4 Traceback (most recent call last): … … 14 14 self.connection.cursor().execute("SELECT 1") 15 15 psycopg2.InterfaceError: connection already closed 16 }}}