You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2021/01/19 15:26:08 UTC

[trafficserver] branch 9.0.x updated: Remove the warning statement (#7414)

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

zwoop pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new d95498a  Remove the warning statement (#7414)
d95498a is described below

commit d95498a798b093502764e1abb8c79064f3e69bcf
Author: Vijay Mamidi <vi...@yahoo.com>
AuthorDate: Fri Jan 8 09:24:52 2021 -0800

    Remove the warning statement (#7414)
    
    (cherry picked from commit a884cc1432015be1376896ff1bcd83f8ca34594e)
---
 iocore/net/UnixNetVConnection.cc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/iocore/net/UnixNetVConnection.cc b/iocore/net/UnixNetVConnection.cc
index 0d5ad00..2d8f44f 100644
--- a/iocore/net/UnixNetVConnection.cc
+++ b/iocore/net/UnixNetVConnection.cc
@@ -91,7 +91,6 @@ read_signal_and_update(int event, UnixNetVConnection *vc)
     case VC_EVENT_ACTIVE_TIMEOUT:
     case VC_EVENT_INACTIVITY_TIMEOUT:
       Debug("inactivity_cop", "event %d: null read.vio cont, closing vc %p", event, vc);
-      Warning("read: Closing orphaned vc %p", vc);
       vc->closed = 1;
       break;
     default:
@@ -126,7 +125,6 @@ write_signal_and_update(int event, UnixNetVConnection *vc)
     case VC_EVENT_ACTIVE_TIMEOUT:
     case VC_EVENT_INACTIVITY_TIMEOUT:
       Debug("inactivity_cop", "event %d: null write.vio cont, closing vc %p", event, vc);
-      Warning("write: Closing orphaned vc %p", vc);
       vc->closed = 1;
       break;
     default: