From 01db9740403143ea8d12e0a7492697a5d10eaa4f Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 15 Jun 2021 12:10:49 -0400 Subject: [PATCH] disable es (revert) --- lbry/wallet/server/block_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/server/block_processor.py b/lbry/wallet/server/block_processor.py index 04a049f71..5ab50e72b 100644 --- a/lbry/wallet/server/block_processor.py +++ b/lbry/wallet/server/block_processor.py @@ -444,7 +444,7 @@ class BlockProcessor: for block in blocks: await self.run_in_thread_with_lock(self.advance_block, block) # TODO: we shouldnt wait on the search index updating before advancing to the next block - await self.db.search_index.claim_consumer(self.claim_producer()) + # await self.db.search_index.claim_consumer(self.claim_producer()) self.db.search_index.clear_caches() self.touched_claims_to_send_es.clear() self.removed_claims_to_send_es.clear()