mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-25 21:45:52 +00:00
Lok TOO_BUSY errors.
This commit is contained in:
@@ -1163,6 +1163,7 @@ Json::Value RPCHandler::doRipplePathFind(Json::Value jvRequest, int& cost)
|
|||||||
|
|
||||||
if (theApp->getJobQueue().getJobCountGE(jtCLIENT) > 200)
|
if (theApp->getJobQueue().getJobCountGE(jtCLIENT) > 200)
|
||||||
{
|
{
|
||||||
|
cLog(lsDEBUG) << "Too busy for RPF";
|
||||||
jvResult = rpcError(rpcTOO_BUSY);
|
jvResult = rpcError(rpcTOO_BUSY);
|
||||||
}
|
}
|
||||||
else if (!jvRequest.isMember("source_account"))
|
else if (!jvRequest.isMember("source_account"))
|
||||||
@@ -2892,7 +2893,10 @@ Json::Value RPCHandler::doCommand(const Json::Value& jvRequest, int iRole, int &
|
|||||||
if (cost == 0)
|
if (cost == 0)
|
||||||
cost = rpcCOST_DEFAULT;
|
cost = rpcCOST_DEFAULT;
|
||||||
if ((iRole != ADMIN) && (theApp->getJobQueue().getJobCountGE(jtCLIENT) > 500))
|
if ((iRole != ADMIN) && (theApp->getJobQueue().getJobCountGE(jtCLIENT) > 500))
|
||||||
|
{
|
||||||
|
cLog(lsDEBUG) << "Too busy for command";
|
||||||
return rpcError(rpcTOO_BUSY);
|
return rpcError(rpcTOO_BUSY);
|
||||||
|
}
|
||||||
|
|
||||||
if (!jvRequest.isMember("command"))
|
if (!jvRequest.isMember("command"))
|
||||||
return rpcError(rpcCOMMAND_MISSING);
|
return rpcError(rpcCOMMAND_MISSING);
|
||||||
|
|||||||
Reference in New Issue
Block a user