You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by sh...@apache.org on 2019/06/20 21:03:05 UTC

[trafficserver] branch master updated: Fix the number of net_connections_currently_open_stat error increase

This is an automated email from the ASF dual-hosted git repository.

shinrich pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new b460616  Fix the number of net_connections_currently_open_stat error increase
b460616 is described below

commit b460616d421ab11cb30864b3d15719c92dd2146f
Author: chenggang7 <ch...@staff.sina.com.cn>
AuthorDate: Thu Jun 20 11:31:58 2019 +0800

    Fix the number of net_connections_currently_open_stat error increase
---
 src/traffic_server/InkAPI.cc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/traffic_server/InkAPI.cc b/src/traffic_server/InkAPI.cc
index e89fd30..0480489 100644
--- a/src/traffic_server/InkAPI.cc
+++ b/src/traffic_server/InkAPI.cc
@@ -6645,7 +6645,6 @@ TSVConnFdCreate(int fd)
     return nullptr;
   }
 
-  NET_SUM_GLOBAL_DYN_STAT(net_connections_currently_open_stat, 1);
   return reinterpret_cast<TSVConn>(vc);
 }