From 172306c308bcfdbc32e3b7ad2927814c77a58fd3 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 8 Jun 2026 08:44:25 +0200 Subject: [PATCH] CLEANUP: sessions: simplify the sess_priv_conns pool name Using "show pools detailed" on the CLI breaks the column alignment on "sess_priv_conns" because the pool name contains spaces: "session priv conns list", which is not welcome as pool names are truncated after the 12th chars anyway. Let's shorten it to the pool's name as done for many other ones: sess_priv_conns. This can be backported as far as 3.0 where this name was introduced, because it helps when trying to sum or graph certain metrics during debugging. --- src/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session.c b/src/session.c index d5bd4ea95..4c6bbf604 100644 --- a/src/session.c +++ b/src/session.c @@ -30,7 +30,7 @@ DECLARE_TYPED_POOL(pool_head_session, "session", struct session); -DECLARE_TYPED_POOL(pool_head_sess_priv_conns, "session priv conns list", struct sess_priv_conns); +DECLARE_TYPED_POOL(pool_head_sess_priv_conns, "sess_priv_conns", struct sess_priv_conns); int conn_complete_session(struct connection *conn);