mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-07-12 02:26:07 -04:00
more fixes for ebadurl bug
This commit is contained in:
committed by
Brian Rasmusson
parent
10a2b7a104
commit
dae1de7d0e
@ -3640,11 +3640,17 @@ bool CollectionRec::rebuildUrlFiltersDiffbot() {
|
||||
|
||||
|
||||
|
||||
m_regExs[i].set("errorcount>=1 && !hastmperror && errcount<=4");
|
||||
// try to fix bug of EBADURL when it wasn't really:
|
||||
m_regExs[i].set("errorcount==1 && !hastmperror");
|
||||
m_spiderPriorities [i] = 15;
|
||||
m_spiderFreqs [i] = 0.1;
|
||||
m_maxSpidersPerRule [i] = 1; // turn off spiders if not tmp error
|
||||
// no, try to fix bug of EBADURL when it wasn't really...
|
||||
m_maxSpidersPerRule [i] = 1;
|
||||
i++;
|
||||
|
||||
m_regExs[i].set("errorcount>=2 && !hastmperror");
|
||||
m_spiderPriorities [i] = 14;
|
||||
m_spiderFreqs [i] = 0.0;
|
||||
m_maxSpidersPerRule [i] = 0; // turn off spiders if not tmp error
|
||||
i++;
|
||||
|
||||
// and for docs that have errors respider once every 5 hours
|
||||
|
Reference in New Issue
Block a user