summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/crawl/crawl.conf2
-rwxr-xr-xsrc/crawl/crawl.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/crawl/crawl.conf b/src/crawl/crawl.conf
index 0a9947c..ac3021e 100644
--- a/src/crawl/crawl.conf
+++ b/src/crawl/crawl.conf
@@ -4,7 +4,7 @@ local dbg = require( "crawl/debugger" )
crawler = {
-- stop after N documents
- stop_after_N_operations = 0,
+ stop_after_N_operations = 100,
module_path = "modules",
diff --git a/src/crawl/crawl.cpp b/src/crawl/crawl.cpp
index 04f4d1c..460d41a 100755
--- a/src/crawl/crawl.cpp
+++ b/src/crawl/crawl.cpp
@@ -353,7 +353,7 @@ int main( int /* argc */, char *argv[] )
}
}
- //~ sleep( 2 );
+ sleep( 1 );
counter++;
if( counter > stopAfterNOperations ) {
term = true;