Edgewall Software

Changes between Initial Version and Version 2 of Ticket #12618


Ignore:
Timestamp:
Dec 4, 2016, 1:40:48 PM (7 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12618

    • Property Owner set to Ryan J Ollos
    • Property Status newassigned
    • Property Milestone next-stable-1.2.x1.2.1
  • Ticket #12618 – Description

    initial v2  
    1111             # Database schema may have changed, so close all connections
    1212-            DatabaseManager(self).shutdown()
    13 +            if self.dburi != 'sqlite::memory:':
    14 +                DatabaseManager(self).shutdown()
     13+            dbm = DatabaseManager(self)
     14+            if dbm.connection_uri != 'sqlite::memory:':
     15+                dbm.shutdown()
    1516         del self.database_version
    1617         return True