Explorar el Código

Only spawn one worker for comparisons in local mode.

tags/v0.2
Ben Kurtovic hace 9 años
padre
commit
c56838e742
Se han modificado 1 ficheros con 6 adiciones y 5 borrados
  1. +6
    -5
      earwigbot/wiki/copyvios/__init__.py

+ 6
- 5
earwigbot/wiki/copyvios/__init__.py Ver fichero

@@ -167,13 +167,14 @@ class CopyvioMixIn(object):
start_time = time()
until = (start_time + max_time) if max_time > 0 else None
article = MarkovChain(ArticleTextParser(self.get()).strip())
workspace = CopyvioWorkspace(article, min_confidence, until,
self._logger, self._addheaders, max_time)
workspace = CopyvioWorkspace(
article, min_confidence, until, self._logger, self._addheaders,
max_time, 1)
workspace.enqueue([url])
workspace.wait()
best = workspace.best
result = CopyvioCheckResult(best.confidence >= min_confidence,
best.confidence, best.url, 0,
time() - start_time, article, best.chains)
result = CopyvioCheckResult(
best.confidence >= min_confidence, best.confidence, best.url, 0,
time() - start_time, article, best.chains)
self._logger.info(result.get_log_message(self.title))
return result

Cargando…
Cancelar
Guardar