##// END OF EJS Templates
Use check_same_thread=False by default for history sqlite db (#13886)...
Matthias Bussonnier -
r28320:2da6fb98 merge
parent child Browse files
Show More
@@ -177,6 +177,10 b' class HistoryAccessor(HistoryAccessorBase):'
177 """
177 """
178 ).tag(config=True)
178 ).tag(config=True)
179
179
180 @default("connection_options")
181 def _default_connection_options(self):
182 return dict(check_same_thread=False)
183
180 # The SQLite database
184 # The SQLite database
181 db = Any()
185 db = Any()
182 @observe('db')
186 @observe('db')
General Comments 0
You need to be logged in to leave comments. Login now