From bf4a7b6ce8bffd0e098831d95d056e70a433ccce Mon Sep 17 00:00:00 2001 From: Chenna Keshava B S <21219765+ckeshava@users.noreply.github.com> Date: Tue, 1 Oct 2024 17:09:42 -0400 Subject: [PATCH] Expand Error Message for rpcInternal (#4959) Validator operators have been confused by the rpcInternal error, which can occur if the server is not running in another process. --- src/xrpld/net/detail/RPCCall.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/xrpld/net/detail/RPCCall.cpp b/src/xrpld/net/detail/RPCCall.cpp index 997d6463f2..c0d2e20543 100644 --- a/src/xrpld/net/detail/RPCCall.cpp +++ b/src/xrpld/net/detail/RPCCall.cpp @@ -1309,7 +1309,10 @@ struct RPCCallImp // Receive reply if (strData.empty()) - Throw("no response from server"); + Throw( + "no response from server. Please " + "ensure that the rippled server is running in another " + "process."); // Parse reply JLOG(j.debug()) << "RPC reply: " << strData << std::endl;