This is an automated email from the ASF dual-hosted git repository.
amc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 51cc066 Break fix.
51cc066 is described below
commit 51cc0669c7739515c35ff36d87f030bf34491305
Author: Alan M. Carroll <[email protected]>
AuthorDate: Fri Jun 2 11:01:27 2017 -0500
Break fix.
---
proxy/InkAPI.cc | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/proxy/InkAPI.cc b/proxy/InkAPI.cc
index 93ab100..6822592 100644
--- a/proxy/InkAPI.cc
+++ b/proxy/InkAPI.cc
@@ -8266,6 +8266,7 @@ TSHttpTxnConfigStringSet(TSHttpTxn txnp,
TSOverridableConfigKey conf, const char
if (value && length > 0) {
s->t_state.txn_conf->client_cert_filepath = const_cast<char *>(value);
}
+ break;
case TS_CONFIG_HTTP_RESPONSE_VIA_TRANSPORT:
data._s.setView(value, length);
if
(ViaTransportVerbosityConversion(s->t_state.txn_conf->response_via_transport,
"proxy.config.http.response_via_tranport",
@@ -8277,6 +8278,7 @@ TSHttpTxnConfigStringSet(TSHttpTxn txnp,
TSOverridableConfigKey conf, const char
if
(ViaTransportVerbosityConversion(s->t_state.txn_conf->request_via_transport,
"proxy.config.http.request_via_tranport",
RECD_STRING, data)) {
}
+ break;
default:
return TS_ERROR;
break;
@@ -8454,7 +8456,6 @@ TSHttpTxnConfigFind(const char *name, int length,
TSOverridableConfigKey *conf,
cnf = TS_CONFIG_HTTP_FLOW_CONTROL_ENABLED;
}
break;
- break;
case 's':
if (!strncmp(name, "proxy.config.http.send_http11_requests", length)) {
cnf = TS_CONFIG_HTTP_SEND_HTTP11_REQUESTS;
@@ -8491,6 +8492,7 @@ TSHttpTxnConfigFind(const char *name, int length,
TSOverridableConfigKey *conf,
cnf = TS_CONFIG_HTTP_REQUEST_VIA_TRANSPORT;
typ = TS_RECORDDATATYPE_STRING;
}
+ break;
}
break;
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].