mirror of
https://github.com/zotero/zotero.git
synced 2026-09-21 00:22:44 +00:00
Increase DB timeout to 30 seconds
Though it would be real nice to avoid situations where this might be necessary
This commit is contained in:
parent
1756b8d242
commit
4ff5323acd
1 changed files with 1 additions and 1 deletions
|
|
@ -468,7 +468,7 @@ Zotero.DBConnection.prototype.executeTransaction = Zotero.Promise.coroutine(func
|
|||
|
||||
try {
|
||||
while (this._transactionID) {
|
||||
yield this.waitForTransaction(id).timeout(options.waitTimeout || 10000);
|
||||
yield this.waitForTransaction(id).timeout(options.waitTimeout || 30000);
|
||||
}
|
||||
startedTransaction = true;
|
||||
this._transactionID = id;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue