mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Default value for waitretry.
This commit is contained in:
parent
94d7b0b570
commit
47bf277fb5
@ -1,3 +1,11 @@
|
|||||||
|
2008-11-15 Steven Schubiger <stsc@members.fsf.org>
|
||||||
|
|
||||||
|
* sample.wgetrc: Comment the waitretry "default" value,
|
||||||
|
because there is a global one now.
|
||||||
|
|
||||||
|
* wget.texi (Download Options): Mention the global
|
||||||
|
default value.
|
||||||
|
|
||||||
2008-11-10 Micah Cowan <micah@cowan.name>
|
2008-11-10 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
* Makefile.am (EXTRA_DIST): Removed no-longer-present
|
* Makefile.am (EXTRA_DIST): Removed no-longer-present
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
# downloads, set waitretry to maximum number of seconds to wait (Wget
|
# downloads, set waitretry to maximum number of seconds to wait (Wget
|
||||||
# will use "linear backoff", waiting 1 second after the first failure
|
# will use "linear backoff", waiting 1 second after the first failure
|
||||||
# on a file, 2 seconds after the second failure, etc. up to this max).
|
# on a file, 2 seconds after the second failure, etc. up to this max).
|
||||||
waitretry = 10
|
#waitretry = 10
|
||||||
|
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -824,8 +824,7 @@ file, up to the maximum number of @var{seconds} you specify. Therefore,
|
|||||||
a value of 10 will actually make Wget wait up to (1 + 2 + ... + 10) = 55
|
a value of 10 will actually make Wget wait up to (1 + 2 + ... + 10) = 55
|
||||||
seconds per file.
|
seconds per file.
|
||||||
|
|
||||||
Note that this option is turned on by default in the global
|
By default, Wget will assume a value of 10 seconds.
|
||||||
@file{wgetrc} file.
|
|
||||||
|
|
||||||
@cindex wait, random
|
@cindex wait, random
|
||||||
@cindex random wait
|
@cindex random wait
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2008-11-15 Steven Schubiger <stsc@members.fsf.org>
|
||||||
|
|
||||||
|
* init.c (defaults): Set default waitretry value.
|
||||||
|
|
||||||
2008-11-14 Steven Schubiger <stsc@members.fsf.org>
|
2008-11-14 Steven Schubiger <stsc@members.fsf.org>
|
||||||
|
|
||||||
* main.c (format_and_print_line): Use a custom format
|
* main.c (format_and_print_line): Use a custom format
|
||||||
|
@ -331,6 +331,8 @@ defaults (void)
|
|||||||
opt.restrict_files_case = restrict_no_case_restriction;
|
opt.restrict_files_case = restrict_no_case_restriction;
|
||||||
|
|
||||||
opt.max_redirect = 20;
|
opt.max_redirect = 20;
|
||||||
|
|
||||||
|
opt.waitretry = 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return the user's home directory (strdup-ed), or NULL if none is
|
/* Return the user's home directory (strdup-ed), or NULL if none is
|
||||||
|
Loading…
Reference in New Issue
Block a user