forked from LBRYCommunity/lbry-sdk
bottoming out is now warning and no results for peer search
This commit is contained in:
parent
c14915df29
commit
6ff867ef55
1 changed files with 2 additions and 2 deletions
|
@ -360,8 +360,8 @@ class IterativeNodeFinder(IterativeFinder):
|
||||||
if self.are_k_closest_peers_ready:
|
if self.are_k_closest_peers_ready:
|
||||||
self.put_result(self.active.keys(), True)
|
self.put_result(self.active.keys(), True)
|
||||||
elif self.bottom_out_count >= self.bottom_out_limit or self.iteration_count >= self.bottom_out_limit:
|
elif self.bottom_out_count >= self.bottom_out_limit or self.iteration_count >= self.bottom_out_limit:
|
||||||
log.debug("peer search bottomed out.")
|
log.warning("peer search bottomed out.")
|
||||||
self.put_result(self.active.keys(), True)
|
self.put_result([], True)
|
||||||
|
|
||||||
|
|
||||||
class IterativeValueFinder(IterativeFinder):
|
class IterativeValueFinder(IterativeFinder):
|
||||||
|
|
Loading…
Reference in a new issue