MINOR: server: remove idle lock in srv_cleanup_connections
authorWilly Tarreau <w@1wt.eu>
Fri, 6 Nov 2020 11:07:31 +0000 (12:07 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 6 Nov 2020 12:22:44 +0000 (13:22 +0100)
commitf5fe70620c9f9bdda5026e1f8b3673fe83257a7c
treec8f51f883a5f6fa88af8eef96c97ea5bce5e857c
parent70d10d1fb657eb6f8ac8e86c9b6037b53cc907ac
MINOR: server: remove idle lock in srv_cleanup_connections

This function used to grab the idle lock when scanning the threads for
idle connections, but it doesn't need it since the lock only protects
the tree. Let's remove it.
src/server.c