diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2018-05-24 14:31:31 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2018-05-24 14:31:31 +0200 |
commit | 329a4a6159f1972ff5ec7bc2db26430f26dc61f3 (patch) | |
tree | 8eb877d0f9eda9273eb0fb962bce94a858507099 /methods/rsh.cc | |
parent | 71b65b3563d223f6cd69261918ec06d10da48e6c (diff) |
Lower default timeout from 120s to 30s
120s is an insanely high default time out, lower it to 30s
to make things a bit nicer.
Diffstat (limited to 'methods/rsh.cc')
-rw-r--r-- | methods/rsh.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/rsh.cc b/methods/rsh.cc index 7f1d1cc69..0da18690b 100644 --- a/methods/rsh.cc +++ b/methods/rsh.cc @@ -32,7 +32,7 @@ #include <apti18n.h> /*}}}*/ -unsigned long TimeOut = 120; +unsigned long TimeOut = 30; Configuration::Item const *RshOptions = 0; time_t RSHMethod::FailTime = 0; std::string RSHMethod::FailFile; |