This is an automated email from the ASF dual-hosted git repository.
liuhan pushed a commit to branch reduce-handle-connect-time
in repository https://gitbox.apache.org/repos/asf/skywalking-rover.git
The following commit(s) were added to refs/heads/reduce-handle-connect-time by
this push:
new d4624b9 enable conntrack
d4624b9 is described below
commit d4624b9bc103307e20456ab4c4d8f464d06887fc
Author: mrproliu <[email protected]>
AuthorDate: Sat Dec 28 22:37:40 2024 +0800
enable conntrack
---
pkg/tools/ip/conntrack.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/tools/ip/conntrack.go b/pkg/tools/ip/conntrack.go
index 243f219..70d93b1 100644
--- a/pkg/tools/ip/conntrack.go
+++ b/pkg/tools/ip/conntrack.go
@@ -155,7 +155,7 @@ func (c *ConnTrack) UpdateRealPeerAddress(addr *SocketPair,
fromCacheOnly bool)
addr.DestIP = v.realIP
addr.DestPort = v.realPort
addr.NeedConnTrack = false
- log.Debugf("update real peer address from cache: %s:%d",
addr.DestIP, addr.DestPort)
+ log.Infof("update real peer address from cache: %s:%d",
addr.DestIP, addr.DestPort)
c.monitorExpire.Delete(key)
return nil
}