www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 4ff5323acd156cfbbe9fe99bbdafa157b0c2dff3
parent 1756b8d242eb49793154c4061f6881dda4dcbaa4
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue,  3 Jan 2017 15:50:33 -0500

Increase DB timeout to 30 seconds

Though it would be real nice to avoid situations where this might be necessary

Diffstat:
Mchrome/content/zotero/xpcom/db.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/db.js b/chrome/content/zotero/xpcom/db.js @@ -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;