summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <>2007-11-24 11:09:18 +0000
committererdgeist <>2007-11-24 11:09:18 +0000
commite3103d30f73e087382b9eebdea5c83166368e4b1 (patch)
treec3d76c9817b8295254894e7538a83ea411fcf5a5
parent8f7ef4b2eaadef95de2ea2734abd39109e141ff7 (diff)
Debug settings for chunk size were _way_ to low for production
-rw-r--r--ot_fullscrape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot_fullscrape.c b/ot_fullscrape.c
index 36249fb..d85aa9d 100644
--- a/ot_fullscrape.c
+++ b/ot_fullscrape.c
@@ -25,7 +25,7 @@
25 Full scrapes usually are huge and one does not want to 25 Full scrapes usually are huge and one does not want to
26 allocate more memory. So lets get them in 512k units 26 allocate more memory. So lets get them in 512k units
27*/ 27*/
28#define OT_SCRAPE_CHUNK_SIZE (1024) 28#define OT_SCRAPE_CHUNK_SIZE (512*1024)
29 29
30/* "d8:completei%zde10:downloadedi%zde10:incompletei%zdee" */ 30/* "d8:completei%zde10:downloadedi%zde10:incompletei%zdee" */
31#define OT_SCRAPE_MAXENTRYLEN 256 31#define OT_SCRAPE_MAXENTRYLEN 256