From 60eec840d6fdb0999ddeea543f761043769bad41 Mon Sep 17 00:00:00 2001 From: Zuul Date: Thu, 11 Jan 2024 17:46:47 +0000 Subject: [PATCH] Update git submodules * Update oslo.cache from branch 'master' to 6855ffca1d812bd4af60272699ec4e5cceed1f98 - Merge "Clean-up memcache connection sockets" - Clean-up memcache connection sockets The ConnectionPool currently opens sockets, but never closes them. As a result, any client using oslo.cache memcache pool leaves sockets in a CLOSE_WAIT state, with the source port not being re-usable. In our production system, were we have A LOT of activity, this creates a storm of non-reusable ports: all source ports are in use, making the node unuseable for other things. This patch adds a __del__ destructor closing inactive connections, fixing the issue. Closes-Bug: #2043121 Change-Id: I09d632346c76d1aff7c534f0d040162d1985f548 --- oslo.cache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo.cache b/oslo.cache index 3694193d6c..6855ffca1d 160000 --- a/oslo.cache +++ b/oslo.cache @@ -1 +1 @@ -Subproject commit 3694193d6c7bd2248b369ad2c1e8c70f3dc565d1 +Subproject commit 6855ffca1d812bd4af60272699ec4e5cceed1f98