From aa3982f0e2043d2c0b0523fe8cdb98c6179ef6cc Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Mon, 2 Oct 2017 11:21:51 -0400 Subject: [PATCH] temporarily disable blob analytics --- lbrynet/daemon/Daemon.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lbrynet/daemon/Daemon.py b/lbrynet/daemon/Daemon.py index 48124050d..2555a5821 100644 --- a/lbrynet/daemon/Daemon.py +++ b/lbrynet/daemon/Daemon.py @@ -630,14 +630,14 @@ class Daemon(AuthJSONRPCServer): else: blob_infos = [] report["known_blobs"] = 0 - for blob_hash, blob_num, iv, length in blob_infos: - try: - host = yield self.session.blob_manager.get_host_downloaded_from(blob_hash) - except Exception: - host = None - if host: - blobs[blob_num] = host - report["blobs"] = json.dumps(blobs) + # for blob_hash, blob_num, iv, length in blob_infos: + # try: + # host = yield self.session.blob_manager.get_host_downloaded_from(blob_hash) + # except Exception: + # host = None + # if host: + # blobs[blob_num] = host + # report["blobs"] = json.dumps(blobs) defer.returnValue(report) @defer.inlineCallbacks