diff options
author | Jeff King <peff@peff.net> | 2013-09-08 05:02:06 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-09 11:15:17 -0700 |
commit | 115dedd72223e101181363f4e6053b4c937fdc37 (patch) | |
tree | 75792b9c700829cda9241c48fa7bce64663d9ca3 /Documentation/config.txt | |
parent | upload-pack: send keepalive packets during pack computation (diff) | |
download | tgif-115dedd72223e101181363f4e6053b4c937fdc37.tar.xz |
upload-pack: bump keepalive default to 5 seconds
There is no reason not to turn on keepalives by default.
They take very little bandwidth, and significantly less than
the progress reporting they are replacing. And in the case
that progress reporting is on, we should never need to send
a keepalive anyway, as we will constantly be showing
progress and resetting the keepalive timer.
We do not necessarily know what the client's idea of a
reasonable timeout is, so let's keep this on the low side of
5 seconds. That is high enough that we will always prefer
our normal 1-second progress reports to sending a keepalive
packet, but low enough that no sane client should consider
the connection hung.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 432c38c3f2..3fc08293b7 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -2173,7 +2173,7 @@ uploadpack.keepalive:: the server to be hung and give up. Setting this option instructs `upload-pack` to send an empty keepalive packet every `uploadpack.keepalive` seconds. Setting this option to 0 - disables keepalive packets entirely. The default is 0. + disables keepalive packets entirely. The default is 5 seconds. url.<base>.insteadOf:: Any URL that starts with this value will be rewritten to |