logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 2242000bd4e9491e9f8d15568b4387540096a982
parent: c30f73f8fda2b51cfd95967a29cc34a2036ffddd
Author: Noémi Ványi <sitbackandwait@gmail.com>
Date:   Wed, 19 Jul 2017 17:23:54 +0200

change unresponsive_engines to a set to eliminate duplication of errors

Diffstat:

Msearx/results.py6+++---
Mtests/unit/test_webapp.py2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/searx/results.py b/searx/results.py @@ -135,7 +135,7 @@ class ResultContainer(object): self._number_of_results = [] self._ordered = False self.paging = False - self.unresponsive_engines = [] + self.unresponsive_engines = set() def extend(self, engine_name, results): for result in list(results): @@ -306,5 +306,5 @@ class ResultContainer(object): return 0 return resultnum_sum / len(self._number_of_results) - def add_unresponsive_engine(self, engine_name): - self.unresponsive_engines.append(engine_name) + def add_unresponsive_engine(self, engine_error): + self.unresponsive_engines.add(engine_error) diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py @@ -39,7 +39,7 @@ class ViewsTestCase(SearxTestCase): corrections=set(), suggestions=set(), infoboxes=[], - unresponsive_engines=[], + unresponsive_engines=set(), results=self.test_results, results_number=lambda: 3, results_length=lambda: len(self.test_results))