forked from LBRYCommunity/lbry-sdk
increase sync queue
This commit is contained in:
parent
8e68ba4751
commit
d467dcfeaf
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ class SQLDB:
|
||||||
unhexlify(channel_id)[::-1] for channel_id in filtering_channels if channel_id
|
unhexlify(channel_id)[::-1] for channel_id in filtering_channels if channel_id
|
||||||
}
|
}
|
||||||
self.trending = trending
|
self.trending = trending
|
||||||
self.claim_queue = Queue(maxsize=10)
|
self.claim_queue = Queue(maxsize=100_000)
|
||||||
|
|
||||||
def open(self):
|
def open(self):
|
||||||
self.db = apsw.Connection(
|
self.db = apsw.Connection(
|
||||||
|
|
Loading…
Reference in a new issue