Repository: trafficserver Updated Branches: refs/heads/master 197550aa5 -> 9a24e93c5
TS-3440 clang-format Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/3b85aad6 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/3b85aad6 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/3b85aad6 Branch: refs/heads/master Commit: 3b85aad638f16b0c7728b0525524e0637bd26215 Parents: 197550a Author: Leif Hedstrom <[email protected]> Authored: Sat Jul 4 14:37:28 2015 -0600 Committer: Leif Hedstrom <[email protected]> Committed: Sat Jul 4 14:37:28 2015 -0600 ---------------------------------------------------------------------- proxy/http/HttpTransact.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/3b85aad6/proxy/http/HttpTransact.cc ---------------------------------------------------------------------- diff --git a/proxy/http/HttpTransact.cc b/proxy/http/HttpTransact.cc index 06870ae..3974b86 100644 --- a/proxy/http/HttpTransact.cc +++ b/proxy/http/HttpTransact.cc @@ -3644,12 +3644,13 @@ HttpTransact::handle_response_from_server(State *s) handle_server_connection_not_open(s); break; case CONNECTION_CLOSED: - /* fall through */ + /* fall through */ case PARSE_ERROR: - /* fall through */ + /* fall through */ case BAD_INCOMING_RESPONSE: { // this case should not be allowed to retry because we'll end up making another request - DebugTxn("http_trans", "[handle_response_from_server] Transaction received a bad response or a partial response, not retrying..."); + DebugTxn("http_trans", + "[handle_response_from_server] Transaction received a bad response or a partial response, not retrying..."); SET_VIA_STRING(VIA_DETAIL_SERVER_CONNECT, VIA_DETAIL_SERVER_FAILURE); handle_server_connection_not_open(s); break;
