Skip to content

Commit 429e046

Browse files
committed
Increase DB operation timeout (#8958)
1 parent ecf543d commit 429e046

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/augur-sdk/src/state/db/DBCollectionProxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function CollectionQueueAddOn (db: Dexie) {
2525
}, timeout(async function ReadOperation() {
2626
console.log('Reading Query');
2727
return originalToArray.call(collection, cb);
28-
}, 2500), callback);
28+
}, 10000), callback);
2929
}, 10);
3030

3131
db.Collection.prototype.toArray = function toArray<R>(cb?): PromiseExtended<any[]> {

0 commit comments

Comments
 (0)