From 63e741a3c6c497358b410dd9ea456103fa6dba4f Mon Sep 17 00:00:00 2001 From: slguan Date: Thu, 5 Sep 2019 12:33:27 +0800 Subject: [PATCH] fix the issue #463 --- src/modules/http/src/httpServer.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/modules/http/src/httpServer.c b/src/modules/http/src/httpServer.c index 5d1f3b64fc..ed6646a5c0 100644 --- a/src/modules/http/src/httpServer.c +++ b/src/modules/http/src/httpServer.c @@ -351,13 +351,11 @@ bool httpReadData(HttpThread *pThread, HttpContext *pContext) { } if (!httpReadDataImp(pContext)) { - httpTrace("context:%p, fd:%d, ip:%s, read data error, close connect", pContext, pContext->fd, pContext->ipstr); httpCloseContextByServer(pThread, pContext); return false; } if (!httpParseRequest(pContext)) { - httpTrace("context:%p, fd:%d, ip:%s, failed to parse http head, close connect", pContext, pContext->fd, pContext->ipstr); httpCloseContextByServer(pThread, pContext); return false; } @@ -450,8 +448,8 @@ void httpProcessHttpData(void *param) { } if (!pContext->pThread->pServer->online) { - httpSendErrorResp(pContext, HTTP_SERVER_OFFLINE); httpTrace("context:%p, fd:%d, ip:%s, server is not online", pContext, pContext->fd, pContext->ipstr); + httpSendErrorResp(pContext, HTTP_SERVER_OFFLINE); httpCloseContextByServer(pThread, pContext); continue; } @@ -459,8 +457,6 @@ void httpProcessHttpData(void *param) { __sync_fetch_and_add(&pThread->pServer->requestNum, 1); if (!(*(pThread->processData))(pContext)) { - httpError("context:%p, fd:%d, ip:%s, app force closed", pContext, pContext->fd, pContext->ipstr, - pContext->accessTimes); httpCloseContextByServer(pThread, pContext); } } -- GitLab