From 88bd5b12a4cb6de8ad94daeddf9e8ee03a1eaf40 Mon Sep 17 00:00:00 2001 From: David Schwartz Date: Fri, 31 Jan 2014 14:23:25 -0800 Subject: [PATCH] Raise RPC time and size limits --- src/ripple_net/rpc/RPCCall.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ripple_net/rpc/RPCCall.cpp b/src/ripple_net/rpc/RPCCall.cpp index 87ab1c8e92..70b45880fd 100644 --- a/src/ripple_net/rpc/RPCCall.cpp +++ b/src/ripple_net/rpc/RPCCall.cpp @@ -1151,8 +1151,8 @@ void RPCCall::fromNetwork ( // Log(lsDEBUG) << "requesting" << std::endl; // WriteLog (lsDEBUG, RPCParser) << "send request " << strMethod << " : " << strRequest << std::endl; - const int RPC_REPLY_MAX_BYTES (128*1024*1024); - const int RPC_NOTIFY_SECONDS (30); + const int RPC_REPLY_MAX_BYTES (256*1024*1024); + const int RPC_NOTIFY_SECONDS (600); HTTPClient::request ( bSSL,