Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 144634 Details for
Bug 221132
About the GET request transmitted from Squid
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch fixing the problem.
squid-2.6-bad_permission.patch (text/plain), 1.66 KB, created by
Jose Plans
on 2007-01-02 11:09:01 UTC
(
hide
)
Description:
Patch fixing the problem.
Filename:
MIME Type:
Creator:
Jose Plans
Created:
2007-01-02 11:09:01 UTC
Size:
1.66 KB
patch
obsolete
>diff -ruNp squid-2.5.STABLE3.org/src/cf.data.pre squid-2.5.STABLE3/src/cf.data.pre >--- squid-2.5.STABLE3.org/src/cf.data.pre 2008-06-24 21:47:34.000000000 +0900 >+++ squid-2.5.STABLE3/src/cf.data.pre 2008-06-24 21:48:41.000000000 +0900 >@@ -3153,6 +3153,17 @@ DOC_START > if it is set to a value greater than ten. > DOC_END > >+NAME: retry_on_error >+TYPE: onoff >+LOC: Config.retry.onerror >+DEFAULT: off >+DOC_START >+ If set to on Squid will automatically retry requests when >+ receiving an error response. This is mainly useful if you >+ are in a complex cache hierarchy to work around access >+ control errors. >+DOC_END >+ > NAME: snmp_port > TYPE: ushort > LOC: Config.Port.snmp >diff -ruNp squid-2.5.STABLE3.org/src/forward.c squid-2.5.STABLE3/src/forward.c >--- squid-2.5.STABLE3.org/src/forward.c 2008-06-24 21:47:34.000000000 +0900 >+++ squid-2.5.STABLE3/src/forward.c 2008-06-24 21:48:41.000000000 +0900 >@@ -813,13 +813,14 @@ int > fwdReforwardableStatus(http_status s) > { > switch (s) { >+ case HTTP_BAD_GATEWAY: >+ case HTTP_GATEWAY_TIMEOUT: >+ return 1; > case HTTP_FORBIDDEN: > case HTTP_INTERNAL_SERVER_ERROR: > case HTTP_NOT_IMPLEMENTED: >- case HTTP_BAD_GATEWAY: > case HTTP_SERVICE_UNAVAILABLE: >- case HTTP_GATEWAY_TIMEOUT: >- return 1; >+ return Config.retry.onerror; > default: > return 0; > } >diff -ruNp squid-2.5.STABLE3.org/src/structs.h squid-2.5.STABLE3/src/structs.h >--- squid-2.5.STABLE3.org/src/structs.h 2008-06-24 21:47:34.000000000 +0900 >+++ squid-2.5.STABLE3/src/structs.h 2008-06-24 21:48:41.000000000 +0900 >@@ -642,6 +642,7 @@ struct _SquidConfig { > struct { > time_t timeout; > int maxtries; >+ int onerror; > } retry; > struct { > size_t limit;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 221132
: 144634