Skip to content

Commit

Permalink
chore:
Browse files Browse the repository at this point in the history
  • Loading branch information
catdogpandas committed Sep 13, 2024
1 parent 76caffc commit ff1666b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/common/http/AsynCurlRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ void AsynCurlRunner::HandleCompletedRequests() {
curl_easy_getinfo(handler, CURLINFO_PRIVATE, &request);
LOG_DEBUG(sLogger,
("send http request completed, request address",
request)("response time",ToString(chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now()- request->mLastSendTime).count()) + "ms"));
request)("response time",ToString(chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now()- request->mLastSendTime).count()) + "ms")
("try cnt", ToString(request->mTryCnt)));
switch (msg->data.result) {
case CURLE_OK: {
long statusCode = 0;
Expand Down

0 comments on commit ff1666b

Please sign in to comment.