remove some logs
This commit is contained in:
parent
ee33d78494
commit
db5e538fc5
|
@ -279,8 +279,7 @@ bool httpReadChunkedBody(HttpContext* pContext, HttpParser* pParser) {
|
||||||
httpParseChunkedBody(pContext, pParser, false);
|
httpParseChunkedBody(pContext, pParser, false);
|
||||||
return HTTP_CHECK_BODY_SUCCESS;
|
return HTTP_CHECK_BODY_SUCCESS;
|
||||||
} else {
|
} else {
|
||||||
httpTrace("context:%p, fd:%d, ip:%s, chunked body not finished, continue read", pContext, pContext->fd,
|
//httpTrace("context:%p, fd:%d, ip:%s, chunked body not finished, continue read", pContext, pContext->fd, pContext->ipstr);
|
||||||
pContext->ipstr);
|
|
||||||
if (!httpReadDataImp(pContext)) {
|
if (!httpReadDataImp(pContext)) {
|
||||||
httpError("context:%p, fd:%d, ip:%s, read chunked request error", pContext, pContext->fd, pContext->ipstr);
|
httpError("context:%p, fd:%d, ip:%s, read chunked request error", pContext, pContext->fd, pContext->ipstr);
|
||||||
return HTTP_CHECK_BODY_ERROR;
|
return HTTP_CHECK_BODY_ERROR;
|
||||||
|
@ -298,8 +297,8 @@ int httpReadUnChunkedBody(HttpContext* pContext, HttpParser* pParser) {
|
||||||
httpSendErrorResp(pContext, HTTP_PARSE_BODY_ERROR);
|
httpSendErrorResp(pContext, HTTP_PARSE_BODY_ERROR);
|
||||||
return HTTP_CHECK_BODY_ERROR;
|
return HTTP_CHECK_BODY_ERROR;
|
||||||
} else if (dataReadLen < pParser->data.len) {
|
} else if (dataReadLen < pParser->data.len) {
|
||||||
httpTrace("context:%p, fd:%d, ip:%s, un-chunked body not finished, read size:%d dataReadLen:%d < pContext->data.len:%d, continue read",
|
//httpTrace("context:%p, fd:%d, ip:%s, un-chunked body not finished, read size:%d dataReadLen:%d < pContext->data.len:%d, continue read",
|
||||||
pContext, pContext->fd, pContext->ipstr, pContext->parser.bufsize, dataReadLen, pParser->data.len);
|
// pContext, pContext->fd, pContext->ipstr, pContext->parser.bufsize, dataReadLen, pParser->data.len);
|
||||||
return HTTP_CHECK_BODY_CONTINUE;
|
return HTTP_CHECK_BODY_CONTINUE;
|
||||||
} else {
|
} else {
|
||||||
return HTTP_CHECK_BODY_SUCCESS;
|
return HTTP_CHECK_BODY_SUCCESS;
|
||||||
|
|
|
@ -101,7 +101,7 @@ void httpFreeContext(HttpServer *pServer, HttpContext *pContext) {
|
||||||
void httpCleanUpContextTimer(HttpContext *pContext) {
|
void httpCleanUpContextTimer(HttpContext *pContext) {
|
||||||
if (pContext->timer != NULL) {
|
if (pContext->timer != NULL) {
|
||||||
taosTmrStopA(&pContext->timer);
|
taosTmrStopA(&pContext->timer);
|
||||||
httpTrace("context:%p, ip:%s, close timer:%p", pContext, pContext->ipstr, pContext->timer);
|
//httpTrace("context:%p, ip:%s, close timer:%p", pContext, pContext->ipstr, pContext->timer);
|
||||||
pContext->timer = NULL;
|
pContext->timer = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -329,8 +329,6 @@ bool httpReadDataImp(HttpContext *pContext) {
|
||||||
}
|
}
|
||||||
|
|
||||||
pParser->buffer[pParser->bufsize] = 0;
|
pParser->buffer[pParser->bufsize] = 0;
|
||||||
httpTrace("context:%p, fd:%d, ip:%s, thread:%s, read size:%d",
|
|
||||||
pContext, pContext->fd, pContext->ipstr, pContext->pThread->label, pParser->bufsize);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -383,10 +381,12 @@ bool httpReadData(HttpThread *pThread, HttpContext *pContext) {
|
||||||
int ret = httpCheckReadCompleted(pContext);
|
int ret = httpCheckReadCompleted(pContext);
|
||||||
if (ret == HTTP_CHECK_BODY_CONTINUE) {
|
if (ret == HTTP_CHECK_BODY_CONTINUE) {
|
||||||
taosTmrReset(httpCloseContextByServerForExpired, HTTP_EXPIRED_TIME, pContext, pThread->pServer->timerHandle, &pContext->timer);
|
taosTmrReset(httpCloseContextByServerForExpired, HTTP_EXPIRED_TIME, pContext, pThread->pServer->timerHandle, &pContext->timer);
|
||||||
httpTrace("context:%p, fd:%d, ip:%s, not finished yet, try another times, timer:%p", pContext, pContext->fd, pContext->ipstr, pContext->timer);
|
//httpTrace("context:%p, fd:%d, ip:%s, not finished yet, try another times, timer:%p", pContext, pContext->fd, pContext->ipstr, pContext->timer);
|
||||||
return false;
|
return false;
|
||||||
} else if (ret == HTTP_CHECK_BODY_SUCCESS){
|
} else if (ret == HTTP_CHECK_BODY_SUCCESS){
|
||||||
httpCleanUpContextTimer(pContext);
|
httpCleanUpContextTimer(pContext);
|
||||||
|
httpTrace("context:%p, fd:%d, ip:%s, thread:%s, read size:%d, dataLen:%d",
|
||||||
|
pContext, pContext->fd, pContext->ipstr, pContext->pThread->label, pContext->parser.bufsize, pContext->parser.data.len);
|
||||||
if (httpDecompressData(pContext)) {
|
if (httpDecompressData(pContext)) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue