Repository: trafficserver Updated Branches: refs/heads/master 9a9c4519e -> 37f0fd013
TS-3326 Slightly better comment Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/37f0fd01 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/37f0fd01 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/37f0fd01 Branch: refs/heads/master Commit: 37f0fd013a45d5f5e56535d307122f55aaaf0c81 Parents: 9a9c451 Author: Leif Hedstrom <[email protected]> Authored: Tue Jan 27 12:19:29 2015 -0700 Committer: Leif Hedstrom <[email protected]> Committed: Tue Jan 27 12:19:29 2015 -0700 ---------------------------------------------------------------------- proxy/http/HttpTransact.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/37f0fd01/proxy/http/HttpTransact.cc ---------------------------------------------------------------------- diff --git a/proxy/http/HttpTransact.cc b/proxy/http/HttpTransact.cc index b191a35..ee04888 100644 --- a/proxy/http/HttpTransact.cc +++ b/proxy/http/HttpTransact.cc @@ -4963,7 +4963,7 @@ HttpTransact::get_ka_info_from_config(State *s, ConnectionAttributes *server_inf } break; default: - // The default is the "1" config, SEND_HTTP11_ALWAYS. + // The default is the "1" config, SEND_HTTP11_ALWAYS, but assert in debug builds since we shouldn't be here ink_assert(0); // FALL THROUGH in a release build case HttpConfigParams::SEND_HTTP11_ALWAYS: @@ -5007,7 +5007,7 @@ HttpTransact::get_ka_info_from_host_db(State *s, ConnectionAttributes *server_in } break; default: - // The default is the "1" config, SEND_HTTP11_ALWAYS + // The default is the "1" config, SEND_HTTP11_ALWAYS, but assert in debug builds since we shouldn't be here ink_assert(0); // FALL THROUGH in a release build case HttpConfigParams::SEND_HTTP11_ALWAYS:
