diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2010-11-10 00:20:31 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-11-15 14:39:12 -0800 |
commit | cb94ff21c2f28eca81ac976f593e53c5e6c5b3bb (patch) | |
tree | bbf9f8464ce690179df6f45a540caa0c40417f09 /MobileCydia.mm | |
parent | 567e3972565737fe38a24e6ba7df047fb7f44386 (diff) |
Remove the APT HTTP timeout: Host Unreachable == frowny pants.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index cb9cda3..7223a99 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9101,7 +9101,10 @@ int main(int argc, char *argv[]) { _pooled if (lang != NULL) _config->Set("APT::Acquire::Translation", lang); - _config->Set("Acquire::http::Timeout", 15); + + // XXX: this timeout might be important :( + //_config->Set("Acquire::http::Timeout", 15); + _config->Set("Acquire::http::MaxParallel", 3); /* }}} */ /* Color Choices {{{ */ |