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

amc 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 ca4f8cd634 libswoc: Update IntrusiveHashMap in HTTP session manager. 
(#9872)
ca4f8cd634 is described below

commit ca4f8cd634beb808bbadf03cb646ab6760cabbe4
Author: Alan M. Carroll <[email protected]>
AuthorDate: Mon Jun 26 15:38:48 2023 -0700

    libswoc: Update IntrusiveHashMap in HTTP session manager. (#9872)
---
 proxy/http/HttpSessionManager.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/proxy/http/HttpSessionManager.h b/proxy/http/HttpSessionManager.h
index 9d7266e191..af5ee99707 100644
--- a/proxy/http/HttpSessionManager.h
+++ b/proxy/http/HttpSessionManager.h
@@ -34,7 +34,7 @@
 
 #include "I_EventSystem.h"
 #include "PoolableSession.h"
-#include "tscore/IntrusiveHashMap.h"
+#include "swoc/IntrusiveHashMap.h"
 
 class ProxyTransaction;
 class HttpSM;
@@ -76,8 +76,8 @@ public:
   }
 
 private:
-  using IPTable   = IntrusiveHashMap<PoolableSession::IPLinkage>;
-  using FQDNTable = IntrusiveHashMap<PoolableSession::FQDNLinkage>;
+  using IPTable   = swoc::IntrusiveHashMap<PoolableSession::IPLinkage>;
+  using FQDNTable = swoc::IntrusiveHashMap<PoolableSession::FQDNLinkage>;
 
 public:
   /** Check if a session matches address and host name.

Reply via email to