This is an automated email from the ASF dual-hosted git repository.
dmeden 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 a00cf95dba CID-1591526 - Fix double unlocking. (#12042)
a00cf95dba is described below
commit a00cf95dba0a28805dd25fcd82dfe683b8f684f0
Author: Damian Meden <[email protected]>
AuthorDate: Wed Feb 19 10:05:06 2025 +0100
CID-1591526 - Fix double unlocking. (#12042)
---
src/mgmt/rpc/jsonrpc/JsonRPCManager.cc | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/mgmt/rpc/jsonrpc/JsonRPCManager.cc
b/src/mgmt/rpc/jsonrpc/JsonRPCManager.cc
index 67b2993dbc..f8d103cf24 100644
--- a/src/mgmt/rpc/jsonrpc/JsonRPCManager.cc
+++ b/src/mgmt/rpc/jsonrpc/JsonRPCManager.cc
@@ -292,7 +292,6 @@
JsonRPCManager::Dispatcher::InternalHandler::invoke(specs::RPCRequestInfo const
g_rpcHandlerProcessingCompleted = false;
// swoc::Rv this will handle both, error and
success cases.
ret = std::move(g_rpcHandlerResponseData);
- lock.unlock();
}},
this->_func);
return ret;