This is an automated email from the ASF dual-hosted git repository.
jrushford pushed a commit to branch master
in repository https://git-dual.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 5c21dd4 TS4287: fix unaavailable_parent_retry.
new b1bd5ca Merge branch 'master' of github.com:apache/trafficserver
5c21dd4 is described below
commit 5c21dd4b322755c6e019bc268e1c3e0a8377c8b0
Author: John J. Rushford <[email protected]>
AuthorDate: Thu Apr 14 19:58:10 2016 +0000
TS4287: fix unaavailable_parent_retry.
---
proxy/ParentSelection.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/proxy/ParentSelection.cc b/proxy/ParentSelection.cc
index 370a46e..c992d2e 100644
--- a/proxy/ParentSelection.cc
+++ b/proxy/ParentSelection.cc
@@ -659,7 +659,7 @@ ParentRecord::Init(matcher_line *line_info)
Warning("%s disabling parent_retry on line %d because parent_is_proxy is
true", modulePrefix, line_num);
} else {
// delete unavailable_server_retry_responses if unavailable_server_retry
is not enabled.
- if (unavailable_server_retry_responses != NULL && (!parent_retry &
PARENT_RETRY_UNAVAILABLE_SERVER)) {
+ if (unavailable_server_retry_responses != NULL && !(parent_retry &
PARENT_RETRY_UNAVAILABLE_SERVER)) {
Warning("%s ignoring unavailable_server_retry_responses directive on
line %d, as unavailable_server_retry is not enabled.",
modulePrefix, line_num);
delete unavailable_server_retry_responses;
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].