Reduce crawler idle time after completing an empty search.

This commit is contained in:
Greg Edwards
2014-05-17 12:47:12 -04:00
parent 66702d68e0
commit c5d308ac7c

View File

@@ -325,7 +325,7 @@ namespace bvCrawler4
if (count == 0)
{
// Nothing found. Sleep as to not spam the server with lots of empty searches
Thread.Sleep(1000 * 30);
Thread.Sleep(1000 * 15);
return;
}