From: Michael R Sweet Date: Thu, 2 May 2019 13:01:43 +0000 (-0400) Subject: Bump the default Timeout to 15 minutes as well (Issue #5570) X-Git-Tag: v2.3b8~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f49af670aa2ebadcd2e202c8507b4d8b5272df55;p=thirdparty%2Fcups.git Bump the default Timeout to 15 minutes as well (Issue #5570) --- diff --git a/doc/help/man-cupsd.conf.html b/doc/help/man-cupsd.conf.html index 2c7c06e7e6..f889b866f4 100644 --- a/doc/help/man-cupsd.conf.html +++ b/doc/help/man-cupsd.conf.html @@ -299,7 +299,7 @@ Not all operating systems support TLS 1.3 at this time. The default is "No".
Timeout seconds
Specifies the HTTP request timeout. -The default is "300" (5 minutes). +The default is "900" (15 minutes).
WebInterface yes
WebInterface no
Specifies whether the web interface is enabled. diff --git a/man/cupsd.conf.5 b/man/cupsd.conf.5 index 9077873649..75d0602790 100644 --- a/man/cupsd.conf.5 +++ b/man/cupsd.conf.5 @@ -7,7 +7,7 @@ .\" Licensed under Apache License v2.0. See the file "LICENSE" for more .\" information. .\" -.TH cupsd.conf 5 "CUPS" "1 May 2019" "Apple Inc." +.TH cupsd.conf 5 "CUPS" "2 May 2019" "Apple Inc." .SH NAME cupsd.conf \- server configuration file for cups .SH DESCRIPTION @@ -465,7 +465,7 @@ The default is "No". .TP 5 \fBTimeout \fIseconds\fR Specifies the HTTP request timeout. -The default is "300" (5 minutes). +The default is "900" (15 minutes). .\"#WebInterface .TP 5 \fBWebInterface yes\fR diff --git a/scheduler/conf.c b/scheduler/conf.c index 85950a17d2..bb6049b2c6 100644 --- a/scheduler/conf.c +++ b/scheduler/conf.c @@ -736,7 +736,7 @@ cupsdReadConfiguration(void) Sandboxing = CUPSD_SANDBOXING_STRICT; StrictConformance = FALSE; SyncOnClose = FALSE; - Timeout = DEFAULT_TIMEOUT; + Timeout = 900; WebInterface = CUPS_DEFAULT_WEBIF; BrowseLocalProtocols = parse_protocols(CUPS_DEFAULT_BROWSE_LOCAL_PROTOCOLS);