diff --git a/src/ripple/net/impl/RPCCall.cpp b/src/ripple/net/impl/RPCCall.cpp index 597e2134c..cb63d997c 100644 --- a/src/ripple/net/impl/RPCCall.cpp +++ b/src/ripple/net/impl/RPCCall.cpp @@ -1894,7 +1894,8 @@ fromNetwork( constexpr auto RPC_REPLY_MAX_BYTES = megabytes(256); using namespace std::chrono_literals; - // auto constexpr RPC_NOTIFY = 10min; // Wietse: lolwut 10 minutes for one HTTP call? + // auto constexpr RPC_NOTIFY = 10min; // Wietse: lolwut 10 minutes for one + // HTTP call? auto constexpr RPC_NOTIFY = 30s; HTTPClient::request( diff --git a/src/ripple/net/impl/RPCSub.cpp b/src/ripple/net/impl/RPCSub.cpp index 8294f871a..5423a1132 100644 --- a/src/ripple/net/impl/RPCSub.cpp +++ b/src/ripple/net/impl/RPCSub.cpp @@ -78,9 +78,9 @@ public: { std::lock_guard sl(mLock); - // Wietse: we're not going to limit this, this is admin-port only, scale accordingly - // Dropping events just like this results in inconsistent data on the receiving end - // if (mDeque.size() >= eventQueueMax) + // Wietse: we're not going to limit this, this is admin-port only, scale + // accordingly Dropping events just like this results in inconsistent + // data on the receiving end if (mDeque.size() >= eventQueueMax) // { // // Drop the previous event. // JLOG(j_.warn()) << "RPCCall::fromNetwork drop"; @@ -184,8 +184,8 @@ private: } private: - // Wietse: we're not going to limit this, this is admin-port only, scale accordingly - // enum { eventQueueMax = 32 }; + // Wietse: we're not going to limit this, this is admin-port only, scale + // accordingly enum { eventQueueMax = 32 }; boost::asio::io_service& m_io_service; JobQueue& m_jobQueue;