Fix resetting the session when first configuring the calibre-db on first boot up
This commit is contained in:
parent
18d16f9a8b
commit
032cb59388
14
cps/db.py
14
cps/db.py
|
@ -423,10 +423,15 @@ class CalibreDB():
|
|||
def __init__(self):
|
||||
""" Initialize a new CalibreDB session
|
||||
"""
|
||||
if not self._init:
|
||||
raise Exception("CalibreDB not initialized")
|
||||
self.session = self.session_factory()
|
||||
self.session = None
|
||||
if self._init:
|
||||
self.initSession()
|
||||
|
||||
self.instances.add(self)
|
||||
|
||||
|
||||
def initSession(self):
|
||||
self.session = self.session_factory()
|
||||
self.update_title_sort(self.config)
|
||||
|
||||
@classmethod
|
||||
|
@ -534,6 +539,9 @@ class CalibreDB():
|
|||
cls.session_factory = scoped_session(sessionmaker(autocommit=False,
|
||||
autoflush=True,
|
||||
bind=cls.engine))
|
||||
for inst in cls.instances:
|
||||
inst.initSession()
|
||||
|
||||
cls._init = True
|
||||
return True
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user