aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-11-20 12:12:47 -0500
committerNick Mathewson <nickm@torproject.org>2013-11-20 12:13:30 -0500
commit647248729fa65f0e51d062e2af8f4e8b38592bf5 (patch)
tree6af84efd3ace5c8058a1dd3b96bd1876b3e89a2d /src
parente572ec856dff263d7f43ec6d42fe3fc3b7557f73 (diff)
downloadtor-647248729fa65f0e51d062e2af8f4e8b38592bf5.tar
tor-647248729fa65f0e51d062e2af8f4e8b38592bf5.tar.gz
Drop the MaxMemInQueues lower limit down to 256 MB.
on #9686, gmorehose reports that the 500 MB lower limit is too high for raspberry pi users.
Diffstat (limited to 'src')
-rw-r--r--src/or/config.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 0accb65e5..01e62d6d4 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -3670,10 +3670,10 @@ options_validate(or_options_t *old_options, or_options_t *options,
log_warn(LD_CONFIG, "EntryNodes is set, but UseEntryGuards is disabled. "
"EntryNodes will be ignored.");
- if (options->MaxMemInQueues < (500 << 20)) {
- log_warn(LD_CONFIG, "MaxMemInQueues must be at least 500 MB for now. "
+ if (options->MaxMemInQueues < (256 << 20)) {
+ log_warn(LD_CONFIG, "MaxMemInQueues must be at least 256 MB for now. "
"Ideally, have it as large as you can afford.");
- options->MaxMemInQueues = (500 << 20);
+ options->MaxMemInQueues = (256 << 20);
}
options->_AllowInvalid = 0;